| | 1 | | namespace DCL |
| | 2 | | { |
| | 3 | | public class DataStore_AvatarsLOD |
| | 4 | | { |
| | 5 | | public const int DEFAULT_MAX_AVATAR = 50; |
| | 6 | | public const int DEFAULT_MAX_IMPOSTORS = 70; |
| | 7 | |
|
| 9 | 8 | | public readonly BaseVariable<float> simpleAvatarDistance = new BaseVariable<float>(15f); |
| 9 | 9 | | public readonly BaseVariable<float> LODDistance = new BaseVariable<float>(30f); |
| 9 | 10 | | public readonly BaseVariable<int> maxAvatars = new BaseVariable<int>(DEFAULT_MAX_AVATAR); |
| 9 | 11 | | public readonly BaseVariable<int> maxImpostors = new BaseVariable<int>(DEFAULT_MAX_IMPOSTORS); |
| | 12 | | } |
| | 13 | | } |