| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- namespace ETModel
- {
- public sealed class Scene: Entity
- {
- public int Zone { get; }
- public SceneType SceneType { get; }
- public string Name { get; }
-
- public Scene(long id, int zone, SceneType sceneType, string name)
- {
- this.Id = id;
- this.InstanceId = id;
- this.Zone = zone;
- this.SceneType = sceneType;
- this.Name = name;
- this.IsCreate = true;
- }
-
- public Scene Get(long id)
- {
- return (Scene)this.Children?[id];
- }
-
- public new Entity Domain
- {
- get
- {
- return this.domain;
- }
- set
- {
- this.domain = value;
- }
- }
-
- public new Entity Parent
- {
- get
- {
- return this.parent;
- }
- set
- {
- if (value == null)
- {
- this.parent = this;
- return;
- }
- this.parent = value;
- this.parent.Children.Add(this.Id, this);
- #if UNITY_EDITOR
- this.ViewGO.transform.SetParent(this.parent.ViewGO.transform, false);
- #endif
- }
- }
- }
-
- public static class SceneEx
- {
- public static int DomainZone(this Entity entity)
- {
- return ((Scene) entity.Domain).Zone;
- }
-
- public static Scene DomainScene(this Entity entity)
- {
- return (Scene) entity.Domain;
- }
- }
- }
|