Announcement

Collapse
No announcement yet.

Automatically changing text

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Automatically changing text

    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?

    Thanks.
    - Geoff

  • #2
    It's scriptable, and there's reference for how to do it in the maxscript help tutorials.
    Colin Senner

    Comment


    • #3
      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
      Last edited by YoyoBoy; 25-03-2011, 12:18 PM.
      - Geoff

      Comment


      • #4
        We need to cast the float to an integer, and display the integer.
        Code:
        theCtrl.SetExpression "TheText.text = ((ExposeAngle.localEulerY as integer) as string\n0" decimal 0
        Colin Senner

        Comment


        • #5
          Suh-weet! Thanks!
          - Geoff

          Comment

          Working...