ObjectPlacementBoxStackOverlapData.cs 415 B

123456789101112131415
  1. #if UNITY_EDITOR
  2. namespace O3DWB
  3. {
  4. public class ObjectPlacementBoxStackOverlapData
  5. {
  6. #region Private Variables
  7. private bool _isOverlappedByAnotherStack = false;
  8. #endregion
  9. #region Public Properties
  10. public bool IsOverlappedByAnotherStack { get { return _isOverlappedByAnotherStack; } set { _isOverlappedByAnotherStack = value; } }
  11. #endregion
  12. }
  13. }
  14. #endif