mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Re-enabled ExampleModule's keybinds
This commit is contained in:
parent
963cf0173f
commit
f0776fa557
1 changed files with 2 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ function ExampleModule::initClient(%this)
|
||||||
function ExampleModule::onCreateClientConnection(%this)
|
function ExampleModule::onCreateClientConnection(%this)
|
||||||
{
|
{
|
||||||
//This will push our keybind movemap onto the input stack, so we can control our camera in our ExampleGameMode
|
//This will push our keybind movemap onto the input stack, so we can control our camera in our ExampleGameMode
|
||||||
//ExampleMoveMap.push();
|
ExampleMoveMap.push();
|
||||||
}
|
}
|
||||||
|
|
||||||
//This is called when a client game session disconnects from a game server
|
//This is called when a client game session disconnects from a game server
|
||||||
|
|
@ -104,5 +104,5 @@ function ExampleModule::onCreateClientConnection(%this)
|
||||||
function ExampleModule::onDestroyClientConnection(%this)
|
function ExampleModule::onDestroyClientConnection(%this)
|
||||||
{
|
{
|
||||||
//This will pop the keybind, cleaning it up from the input stack, as it no longer applies
|
//This will pop the keybind, cleaning it up from the input stack, as it no longer applies
|
||||||
//ExampleMoveMap.pop();
|
ExampleMoveMap.pop();
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue