コード例 #1
0
ファイル: PlayerWeapon.cs プロジェクト: SodaCookie/VRGame
 public override void GotHit(HitboxCollisionEventArgs other)
 {
     Shatter();
 }
コード例 #2
0
 protected abstract void TakeDamage(HitboxCollisionEventArgs eventArgs);
コード例 #3
0
 public abstract void GotHit(HitboxCollisionEventArgs other);
コード例 #4
0
ファイル: SimpleEnemy.cs プロジェクト: SodaCookie/VRGame
 protected override void TakeDamage(HitboxCollisionEventArgs eventArgs)
 {
     Destroy(gameObject);
 }