EnemyCharacter.Start C# (CSharp) 메소드

Start() 보호된 메소드

protected Start ( ) : void
리턴 void
    protected override void Start()
    {
        base.Start();
        // Scale enemy hitpoints according to player count
        hitPoints = hitPoints * (float)NetworkDirector.Players.Count * 0.8f;
    }