1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PlayAreaConstant
- {
-
-
-
- public const float BRUSH_SIZE = 0.24f;
-
-
-
- public const float CELL_SIZE = 0.08f;
-
-
-
- public const int GRID_SIZE = 100;
-
-
-
- public const float DEFAULT_HEIGHT_FROM_HEAD = 0f;
-
-
-
- public const float STATIONARY_AREA_RADIUS = 1.5f;
-
-
-
- public const int CYLINDER_SPLIT_COUNT = 20;
-
-
-
- public const float HEAD_BOW_ANGLE = 45f;
-
-
-
- public const float SAFETY_AREA_HEIGHT = 2.5f;
-
-
-
- public const string PLAY_AREA_NAME = "PlayArea";
-
-
-
- public const string STATIONARY_NAME = "StationaryArea";
-
-
-
- public const string SAVE_FILE_NAME = "/sdcard/SafetyArea.txt";
- }
|