Lshift bind
by mb · in Torque Game Engine Advanced · 05/01/2008 (2:45 pm) · 4 replies
I ported my game from 1.3 to 1.7 and I have a bind that is lshift. Left shift doesn't work in-game but instead I hit right shift and it works... but nothing is bound to rshift.
config.cs:
moveMap.bind(keyboard, "lshift", drop_Building);
default.bind.cs
function drop_Building(%val)
{
if (%val)
{
commandToServer('dropBuilding');
}
}
moveMap.bind(keyboard, "lshift", drop_Building);
Weird eh?
config.cs:
moveMap.bind(keyboard, "lshift", drop_Building);
default.bind.cs
function drop_Building(%val)
{
if (%val)
{
commandToServer('dropBuilding');
}
}
moveMap.bind(keyboard, "lshift", drop_Building);
Weird eh?
Torque 3D Owner Syllus