C# Class PlayerHorseback, PaperCowboys

Characters that belong to players may have this as a component. What makes this unique from PlayerCharacter is it polls for movements, as well as damage management.
Inheritance: PlayerCharacter, IInputPoller, IDamageTaker
ファイルを表示 Open project: Gamieon/PaperCowboys

Public Methods

Method Description
OnPhotonInstantiate ( PhotonMessageInfo, info ) : void

Protected Methods

Method Description
Awake ( ) : void
CalculatePostureFromPlayerMovement ( ) : Posture,
DestroyThisCharacter ( ) : void
Start ( ) : void
Update ( ) : void

Private Methods

Method Description
IDamageTaker ( IDamageDealer damageDealer ) : void

Called by the player observing their projectile making contact with this character to inflict damage to this character. This must never be called from an RPC.

IInputPoller ( ) : bool

Called to begin polling this input object

IInputPoller ( ) : void

Called when polling has finished

IInputPoller ( Rect screenArea ) : void

Called to render the GUI

LateUpdate ( ) : void
RPCDestroy ( ) : void
RPCNetworkInstantiate ( NetworkPlayer owner ) : void
RPCPlayerCharacterHorseBeginDying ( ) : void
RPCPlayerCharacterHorseTakeDamage ( float damage ) : void
UpdateAim ( ) : void

Called by the owning client from IInputPoller.Poll to update the gun aim.

UpdatePlayerMovements ( ) : void

Called by the owning client from IInputPoller.Poll to update player movement states

Method Details

Awake() protected method

protected Awake ( ) : void
return void

CalculatePostureFromPlayerMovement() protected method

protected CalculatePostureFromPlayerMovement ( ) : Posture,
return Posture,

DestroyThisCharacter() protected method

protected DestroyThisCharacter ( ) : void
return void

OnPhotonInstantiate() public method

public OnPhotonInstantiate ( PhotonMessageInfo, info ) : void
info PhotonMessageInfo,
return void

Start() protected method

protected Start ( ) : void
return void

Update() protected method

protected Update ( ) : void
return void