If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Exciting News: Chaos acquires EvolveLAB = AI-Powered Design.
To learn more, please visit this page!
New! You can now log in to the forums with your chaos.com account as well as your forum account.
I want to make a text object displays the constantly changing angle of another object. Is there any way to wire the number in a value of an ExposeTM helper into the text of a Text Shape Object?
Cool! Thanks! I was just barely smart enough to modify the example in the tut to my needs -except... how can I kill the decimal places?
This is what I did:
TM=exposetm name:"ExposeAngle"
t=text name:"ControlledText"
t.baseobject.renderable=true
theCtrl = float_script()
theCtrl.addNode "TheText" t
theCtrl.addNode "ExposeAngle" TM
theCtrl.SetExpression "TheText.text = ExposeAngle.localEulerY as string\n0" decimal 0
t.kerning.controller=theCtrl
Comment