Advertisement
_Dunno_

Render Objects Settings

Feb 9th, 2025
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2. using UnityEngine;
  3.  
  4. [Serializable]
  5. public class RenderObjectsSettings
  6. {
  7. [field: SerializeField] public Material Material { get; private set; }
  8. [field: SerializeField] public LayerMask LayerMask { get; private set; }
  9. [field: SerializeField] public Vector3 Offset { get; private set; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement