| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | namespace DCL |
| | 4 | | { |
| | 5 | | public class DataStore_WorldObjects |
| | 6 | | { |
| | 7 | | public class SceneData |
| | 8 | | { |
| 553 | 9 | | public readonly BaseHashSet<long> ignoredOwners = new BaseHashSet<long>(); |
| | 10 | |
|
| 553 | 11 | | public readonly BaseRefCounter<Mesh> meshes = new BaseRefCounter<Mesh>(); |
| 553 | 12 | | public readonly BaseRefCounter<Material> materials = new BaseRefCounter<Material>(); |
| 553 | 13 | | public readonly BaseRefCounter<Texture> textures = new BaseRefCounter<Texture>(); |
| 553 | 14 | | public readonly BaseHashSet<long> owners = new BaseHashSet<long>(); |
| 553 | 15 | | public readonly BaseHashSet<Renderer> renderers = new BaseHashSet<Renderer>(); |
| 553 | 16 | | public readonly BaseHashSet<AudioClip> audioClips = new BaseHashSet<AudioClip>(); |
| 553 | 17 | | public readonly BaseRefCounter<AnimationClip> animationClips = new BaseRefCounter<AnimationClip>(); |
| | 18 | |
|
| 553 | 19 | | public readonly BaseVariable<int> triangles = new BaseVariable<int>(); |
| 553 | 20 | | public readonly BaseVariable<long> animationClipSize = new BaseVariable<long>(); |
| 553 | 21 | | public readonly BaseVariable<long> meshDataSize = new BaseVariable<long>(); |
| | 22 | | } |
| | 23 | |
|
| 527 | 24 | | public readonly BaseDictionary<string, SceneData> sceneData = new BaseDictionary<string, SceneData>(); |
| | 25 | | } |
| | 26 | | } |