Fixed proxyActivate not working, closes #557
parent
1d6c3cc748
commit
add93cb778
|
@ -2410,7 +2410,7 @@ bool CRobotMain::EventFrame(const Event &event)
|
||||||
{
|
{
|
||||||
Math::Vector eye = m_engine->GetLookatPt();
|
Math::Vector eye = m_engine->GetLookatPt();
|
||||||
float dist = Math::Distance(eye, obj->GetPosition());
|
float dist = Math::Distance(eye, obj->GetPosition());
|
||||||
if ( dist < obj->GetProxyActivate() )
|
if ( dist < obj->GetProxyDistance() )
|
||||||
{
|
{
|
||||||
obj->SetProxyActivate(false);
|
obj->SetProxyActivate(false);
|
||||||
CreateShortcuts();
|
CreateShortcuts();
|
||||||
|
|
Loading…
Reference in New Issue