Announcement

Collapse
No announcement yet.

maxscript number count not rendering over DR or Backburner

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

  • maxscript number count not rendering over DR or Backburner

    Is there a reason that a script assigned to a text spline that allows the text to count up based on the frame number would not render over DR or backburner. The script is integral to the max text so I'm not sure why this won't work.
    Regards

    Steve

    My Portfolio

  • #2
    Are you able to post the script?
    Dan Brew

    Comment


    • #3
      To answer your question, no there is no reason why it shouldn't work.

      Here's how I would do it:
      Code:
      (
      	theText = text size:10 pos:[25,0,0] wirecolor:yellow
      
      	textCtrl = float_script()
      	textCtrl.addNode "theText" theText
      
      	textCtrl.SetExpression "theText.text = currentTime as string\n0"
      	theText.kerning.controller = textCtrl
      )
      Dan Brew

      Comment

      Working...
      X