@@ -102,26 +102,23 @@ function eav_get_range_from_mods_con obj &i_t1 &i_t2 =
102
102
local props, pr
103
103
local t1min = 0 , t2max = 0
104
104
105
- format " \n\n Modifiers:\n "
105
+ -- format "\n\nModifiers:\n"
106
106
107
107
for i = 1 to obj.modifiers.count do
108
108
(
109
109
cmod = obj.modifiers[i]
110
110
111
- format " \n %: \" %\" (%)\n " i (cmod.name) (classof cmod)
111
+ -- format "\n%: \"%\" (%)\n" i (cmod.name) (classof cmod)
112
112
113
- format " \n %\n " (showProperties cmod)
114
113
props = getpropnames cmod
115
- format " \n %\n " props
116
-
114
+
117
115
for pr in props do
118
116
(
119
117
mod_con = (getPropertyController cmod pr)
120
118
121
119
-- format "% = % (Animatable - %)\n" pr mod_con (isPropertyAnimatable obj pr)
122
120
if mod_con == undefined then
123
121
(
124
- format " %" (cmod.name == " Morpher" )
125
122
if cmod.name == " Morpher" then
126
123
(
127
124
format " % = %" pr cmod[pr]
@@ -139,7 +136,7 @@ function eav_get_range_from_mods_con obj &i_t1 &i_t2 =
139
136
continue
140
137
)
141
138
142
- format " \t %\t (keys: %)\n " pr (mod_con.keys.count)
139
+ -- format "\t%\t(keys: %)\n" pr (mod_con.keys.count)
143
140
144
141
t1 = mod_con.keys[1 ].time.frame as integer
145
142
t2 = (mod_con.keys[mod_con.keys.count].time.frame) as integer
@@ -198,7 +195,7 @@ function eav_exp_obj obj ostream =
198
195
199
196
if b_ran_set and b_ran_mod_set then
200
197
(
201
- format " \n All ranges set - compare\n "
198
+ -- format "\nAll ranges set - compare\n"
202
199
-- Set smallest first key, and latest final key
203
200
if t1_m < t1 then
204
201
(
@@ -212,13 +209,13 @@ function eav_exp_obj obj ostream =
212
209
)
213
210
else if ( not b_ran_set )and ( b_ran_mod_set )then
214
211
(
215
- format " \n Trans range not set\n "
212
+ -- format "\nTrans range not set\n"
216
213
t1 = t1_m
217
214
t2 = t2_m
218
215
)
219
216
else if ( not b_ran_mod_set )and ( b_ran_set )then
220
217
(
221
- format " \n mods range not set\n "
218
+ -- format "\nmods range not set\n"
222
219
-- all values t1, t2 - save in initial state
223
220
)
224
221
else if ( not b_ran_set )and ( not b_ran_mod_set )then
0 commit comments