mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:35:08 +02:00
CR changes
This commit is contained in:
parent
da391564a8
commit
283b5724ba
1 changed files with 3 additions and 3 deletions
|
@ -1799,10 +1799,10 @@ void MyAvatar::setScriptedMotorFrame(QString frame) {
|
|||
}
|
||||
}
|
||||
|
||||
void MyAvatar::setScriptedMotorMode(QString frame) {
|
||||
if (frame.toLower() == "simple") {
|
||||
void MyAvatar::setScriptedMotorMode(QString mode) {
|
||||
if (mode.toLower() == "simple") {
|
||||
_scriptedMotorMode = SCRIPTED_MOTOR_SIMPLE_MODE;
|
||||
} else if (frame.toLower() == "dynamic") {
|
||||
} else if (mode.toLower() == "dynamic") {
|
||||
_scriptedMotorMode = SCRIPTED_MOTOR_DYNAMIC_MODE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue