12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System.Diagnostics;
- using MongoDB.Bson.Serialization.Attributes;
- using Unity.Mathematics;
- namespace ET
- {
- [ChildOf(typeof(UnitComponent))]
- [DebuggerDisplay("ViewName,nq")]
- public class Unit: Entity, IAwake<int>
- {
- public int ConfigId { get; set; } //配置表id
- [BsonIgnore]
- public UnitConfig Config => UnitConfigCategory.Instance.Get(this.ConfigId);
- public UnitType Type => (UnitType)UnitConfigCategory.Instance.Get(this.ConfigId).Type;
- [BsonIgnore]
- public bool IsActor
- {
- get; set;
- }
- [BsonElement]
- private float3 position; //坐标
- [BsonIgnore]
- public float3 Position
- {
- get => this.position;
- set
- {
- float3 oldPos = this.position;
- this.position = value;
- EventSystem.Instance.Publish(this.DomainScene(), new EventType.ChangePosition() { Unit = this, OldPos = oldPos });
- }
- }
- [BsonIgnore]
- public float3 Forward
- {
- get => math.mul(this.Rotation, math.forward());
- set => this.Rotation = quaternion.LookRotation(value, math.up());
- }
-
- [BsonElement]
- private quaternion rotation;
-
- [BsonIgnore]
- public quaternion Rotation
- {
- get => this.rotation;
- set
- {
- this.rotation = value;
- EventSystem.Instance.Publish(this.DomainScene(), new EventType.ChangeRotation() { Unit = this });
- }
- }
- protected override string ViewName
- {
- get
- {
- return $"{this.GetType().Name} ({this.Id})";
- }
- }
- }
- }
|