root/blender-scripts/spinning-text/step.py

Revision 181, 273 bytes (checked in by conrad, 2 years ago)

move logo generating scripts into a 'spinning-text' dir

Line 
1 # A scriptlink script, for use with the logo generator
2 # Rotates the logo object
3 #
4 # Conrad Parker <conrad@metadecks.org>
5 # October 16, 2006
6
7 import Blender as B
8
9 frame = B.Get('curframe')
10
11 ob = B.Object.Get('Logo')
12
13 if frame == 1:
14   ob.RotY = 0.0
15 else:
16   ob.RotY += 0.05
17
Note: See TracBrowser for help on using the browser.