3ds max 2020 rotation not working as expected

Questions and answers about 3Dconnexion devices on Windows.

Moderator: Moderators

Post Reply
bogordo
Posts: 27
Joined: Tue Jul 16, 2019 1:43 pm

3ds max 2020 rotation not working as expected

Post by bogordo »

Hi,
When i try to rotate Z axis it rotates around Y axis:

Bottom movement is doing top's movement and vice versa...

Image
bogordo
Posts: 27
Joined: Tue Jul 16, 2019 1:43 pm

Re: 3ds max 2020 rotation not working as expected

Post by bogordo »

I don't understand, this problem comes from defining "Zoom direction" as "Up/Down", if i do not change this the rotation issue is solved, no sense for me.
luping
Posts: 946
Joined: Wed Mar 20, 2019 5:54 pm

Re: 3ds max 2020 rotation not working as expected

Post by luping »

Try reset all settings.
2020-01-25_10h22_55.png
2020-01-25_10h22_55.png (50.91 KiB) Viewed 4298 times
bogordo
Posts: 27
Joined: Tue Jul 16, 2019 1:43 pm

Re: 3ds max 2020 rotation not working as expected

Post by bogordo »

Thanks, i did, but the issue remains :(
jwick
Moderator
Moderator
Posts: 3340
Joined: Wed Dec 20, 2006 2:25 pm
Location: USA
Contact:

Re: 3ds max 2020 rotation not working as expected

Post by jwick »

Changing the zoom direction in effect rotates the device about the X axes (Y & Z axes change). The rotations around the Y and Z axes follow. You can't control what the GUI does, but you can undo that particular swap if you don't like it by editing the XML file. The GUI will do it again if you use it to change the zoom direction.

I've put individual control over the axes in the XML, so you can do [almost] anything you want to them. The GUI performs shortcut ops on those elements.

To undo what the GUI did, remove the entries for the Ry and Rz axes in the 3DsMax.xml file in %appdata%\3dconnexion\3dxware\cfg.

Code: Select all

<Axis>
   <Input>
      <ActionID>HIDMultiAxis_Ry</ActionID>
      ...
</Axis>
…
<Axis>
   <Input>
      <ActionID>HIDMultiAxis_Rz</ActionID>
      ...
</Axis>
      
bogordo
Posts: 27
Joined: Tue Jul 16, 2019 1:43 pm

Re: 3ds max 2020 rotation not working as expected

Post by bogordo »

Thanks, what should i put inside brackets??

I see "</ActionID><Min>-512</Min><Max>511</Max>" in actual XML, don't know how the commands are used... :roll:

Best regards,
jwick
Moderator
Moderator
Posts: 3340
Joined: Wed Dec 20, 2006 2:25 pm
Location: USA
Contact:

Re: 3ds max 2020 rotation not working as expected

Post by jwick »

In C:\Users\YOUR USERNAME\AppData\Roaming\3Dconnexion\3DxWare\Cfg\3DsMax.xml, find all of these lines and delete them. Save the file.

Code: Select all

        <Axis>
          <Enabled>true</Enabled>
          <Input>
            <ActionID>HIDMultiAxis_Ry</ActionID>
            <Min>-512</Min>
            <Max>511</Max>
          </Input>
          <Output>
            <ActionID>HIDMultiAxis_Rz</ActionID>
            <Reversed>false</Reversed>
          </Output>
        </Axis>
        <Axis>
          <Enabled>true</Enabled>
          <Input>
            <ActionID>HIDMultiAxis_Rz</ActionID>
            <Min>-512</Min>
            <Max>511</Max>
          </Input>
          <Output>
            <ActionID>HIDMultiAxis_Ry</ActionID>
            <Reversed>true</Reversed>
          </Output>
        </Axis>
Post Reply