Hello!
I�ve downloaded the MoBu pluggin folder in order to test streaming data with Arena software. I�ve followed the tutorial video but the script doesn�t work. Looking at the Python Editor I�ve seen the problem is it can�t find the strTargetName :
[color:#3333FF]Creating constraint for optical : FaceTemplate_LBrowInner
Error finding target : [/color]
Should appear the name of the target in the error message.
Thanks in advance! I would like to solve this because is much easier to make the constraints instead one by one...
EXP_FaceConstriaints script
Re: EXP_FaceConstriaints script
Hey again!
I forgot to write that I'm using MotionBuilder 2010 and 2009 version is used in the tutorial. So, maybe there is some difference for the script and that's why it can't find the targets...
I forgot to write that I'm using MotionBuilder 2010 and 2009 version is used in the tutorial. So, maybe there is some difference for the script and that's why it can't find the targets...
-
- NaturalPoint Employee
- Posts: 199
- Joined: Tue Jun 24, 2008 2:01 pm
- Location: Corvallis, OR, USA
- Contact:
Re: EXP_FaceConstriaints script
Please contact support and we can get you the most current script. It's possible the naming conventions from Arena Expression have changed.
thx
Morgan
thx
Morgan
-
- Posts: 12
- Joined: Wed Nov 24, 2010 4:28 am
Re: EXP_FaceConstriaints script
I'm having the same issue, I have renamed all my bones to the reference file. I'm still getting the same error. Can you post the latest working script.
-
- Posts: 12
- Joined: Wed Nov 24, 2010 4:28 am
Re: EXP_FaceConstriaints script
I think I found the issue in the script,
this line:
strMidfix = "-"
should be:
strMidfix = "_"
this line:
strMidfix = "-"
should be:
strMidfix = "_"
-
- Posts: 12
- Joined: Wed Nov 24, 2010 4:28 am
Re: EXP_FaceConstriaints script
I still can't get the offset interface shown up on the window.
-
- Posts: 12
- Joined: Wed Nov 24, 2010 4:28 am
Re: EXP_FaceConstriaints script
Ok, this is why it was not showing up.
this line:
strNames = lMarker.Name.partition("-")
should be:
strNames = lMarker.Name.partition(strMidfix)
this line:
strNames = lMarker.Name.partition("-")
should be:
strNames = lMarker.Name.partition(strMidfix)
-
- NaturalPoint Employee
- Posts: 199
- Joined: Tue Jun 24, 2008 2:01 pm
- Location: Corvallis, OR, USA
- Contact:
Re: EXP_FaceConstriaints script
The current version of the GoodyPack sample:
http://www.naturalpoint.com/optitrack/s ... ds.html#mb
now contains the fixes you describe above.
thanks!
Morgan
http://www.naturalpoint.com/optitrack/s ... ds.html#mb
now contains the fixes you describe above.
thanks!
Morgan