UHSampleGame.Players.Player.SetBase C# (CSharp) Method

SetBase() public method

public SetBase ( Base playerBase ) : void
playerBase UHSampleGame.CoreObjects.Base.Base
return void
        public void SetBase(Base playerBase)
        {
            this.PlayerBase = playerBase;

            if (Type == PlayerType.Human && avatar == null)
            {
                SetupAvatar();
            }
            // TileMap2.SetBase(playerBase);
        }