C# Class MarioController, Unity-2D-Platformer-Tutorial

Inheritance: MonoBehaviour
Show file Open project: tomitrescak/Unity-2D-Platformer-Tutorial Class Usage Examples

Public Properties

Property Type Description
airControlHandicap float
jumpHeight float
maximumSpeed float
whatIsGround LayerMask

Public Methods

Method Description
FixedUpdate ( ) : void
Move ( float move, bool jump ) : void
Start ( ) : void

Private Methods

Method Description
Update ( ) : void

Method Details

FixedUpdate() public method

public FixedUpdate ( ) : void
return void

Move() public method

public Move ( float move, bool jump ) : void
move float
jump bool
return void

Start() public method

public Start ( ) : void
return void

Property Details

airControlHandicap public property

public float airControlHandicap
return float

jumpHeight public property

public float jumpHeight
return float

maximumSpeed public property

public float maximumSpeed
return float

whatIsGround public property

public LayerMask whatIsGround
return LayerMask