![]() |
Paradox Game Engine
v1.0.0 beta06
|
An interface that is called by GameBase.Update. More...
Public Member Functions | |
void | Update (GameTime gameTime) |
This method is called when this game component is updated. More... | |
Properties | |
bool | Enabled [get] |
Gets a value indicating whether the game component's Update method should be called by GameBase.Update. More... | |
int | UpdateOrder [get] |
Gets the update order relative to other game components. Lower values are updated first. More... | |
Events | |
EventHandler< EventArgs > | EnabledChanged |
Occurs when the Enabled property changes. More... | |
EventHandler< EventArgs > | UpdateOrderChanged |
Occurs when the UpdateOrder property changes. More... | |
An interface that is called by GameBase.Update.
Definition at line 30 of file IUpdateable.cs.
void SiliconStudio.Paradox.Games.IUpdateable.Update | ( | GameTime | gameTime | ) |
This method is called when this game component is updated.
gameTime | The current timing. |
Implemented in SiliconStudio.Paradox.Input.InputManagerBase, SiliconStudio.Paradox.UI.UISystem, SiliconStudio.Paradox.Graphics.Regression.FrameGameSystem, SiliconStudio.Paradox.Games.GameSystemBase, SiliconStudio.Paradox.Effects.EffectSystem, SiliconStudio.Paradox.Engine.AudioSystem, SiliconStudio.Paradox.EntityModel.EntitySystem, and SiliconStudio.Paradox.ScriptSystem.
|
get |
Gets a value indicating whether the game component's Update method should be called by GameBase.Update.
true
if update is enabled; otherwise, false
.
Definition at line 52 of file IUpdateable.cs.
|
get |
Gets the update order relative to other game components. Lower values are updated first.
The update order.
Definition at line 58 of file IUpdateable.cs.
EventHandler<EventArgs> SiliconStudio.Paradox.Games.IUpdateable.EnabledChanged |
Occurs when the Enabled property changes.
Definition at line 35 of file IUpdateable.cs.
EventHandler<EventArgs> SiliconStudio.Paradox.Games.IUpdateable.UpdateOrderChanged |
Occurs when the UpdateOrder property changes.
Definition at line 40 of file IUpdateable.cs.