AutodeskRoboticsLab / Mimic

An open-source Maya plugin for controlling Industrial Robots. Written in Python 3.
https://www.mimicformaya.com/
172 stars 39 forks source link

Sample rate in Mimic Preferences should be float #40

Closed Brucepimenta closed 2 years ago

Brucepimenta commented 2 years ago

The "Sample rate" field is defined as integer, but should be float.

mimic_prefs_ui.py:356

 pm.intField(minValue=0,

expected:

 pm.floatField(minValue=0,
aatb-ch commented 2 years ago

Are you running the release version? it's already fixed in Master, if you directly pull the repo

https://github.com/AutodeskRoboticsLab/Mimic/blob/85447f0d346be66988303a6a054473d92f1ed6f4/mimic/scripts/mimic_prefs_ui.py#L356

aatb-ch commented 2 years ago

duplicate of https://github.com/AutodeskRoboticsLab/Mimic/issues/34

Brucepimenta commented 2 years ago

You are right, I was using the release version. I didn't check the Master, it is fixed there, thanks!