コード例 #1
0
ファイル: Breakable.cs プロジェクト: alexturpin/Zombles
        public override void OnRemove()
        {
            if (Health != null) {
                Health.Killed -= OnKilled;
            }

            Health = null;
        }
コード例 #2
0
ファイル: Breakable.cs プロジェクト: alexturpin/Zombles
        public override void OnSpawn()
        {
            Health = Entity.GetComponentOrNull<Health>();

            if (Health != null) {
                Health.Killed += OnKilled;
            }
        }