Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testeffect.py « doc « api2_2x « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d9b65c36be07e331c3a6eb781040735488d4d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import Blender

##################  WARNING   ########################
#
# this script tests the Effect module, and its submodules : Wave, Build and Particle
# an object name "Plane" must be created, with three effects attached to it.
# the first effect must be a "Build" effect
# the second effect must be a "Wave" effect
# the third effect must be a "Particle" effect
#
########################################################



effect = Blender.Effect.New()
print effect



build = Blender.Effect.Get('Plane',0)


for param in ['Type','Flag','Len','Sfra'] :
    value = eval("build.get%s()"%param)
    print param,value
    value1 = eval("build.set%s(%s)"%(param,value))
    print value1

for param in ["sfra","len"]:
    str = "build.%s"%param
    value = eval(str)
    print str,value
    exec("build.%s = value"%param)



wave = Blender.Effect.Get('Plane',1)
for param in ['Type','Flag','Startx','Starty','Height', 'Width', 'Narrow', 'Speed', 'Minfac', 'Damp', 'Timeoffs' ,'Lifetime'] :
    value = eval("wave.get%s()"%param)
    print param,value
    value1 = eval("wave.set%s(%s)"%(param,value))
    print value1


for param in ["lifetime","timeoffs","damp","minfac","speed","narrow","width","height","startx","starty"]:
    str = "wave.%s"%param
    value = eval(str)
    print str,value
    exec("wave.%s = value"%param)




particle = Blender.Effect.Get('Plane',2)
for param in ['Type','Flag','StartTime','EndTime','Lifetime','Normfac','Obfac','Randfac','Texfac','Randlife','Nabla','Totpart','Totkey','Seed','Force','Mult','Life','Child','Mat','Defvec'] :
    value = eval("particle.get%s()"%param)
    print param,value
    value1 = eval("particle.set%s(%s)"%(param,value))
    print value1

for param in ['seed','nabla','sta','end','lifetime','normfac','obfac','randfac','texfac','randlife','vectsize','totpart','force','mult','life','child','mat','defvec']:
    str = "particle.%s"%param
    value = eval(str)
    print str,value
    exec("particle.%s = value"%param)