Skip to content

Commit 7b81900

Browse files
committed
style: Clean up comment output
1 parent 273a1d4 commit 7b81900

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

utils/exporters/max/ThreeJSExporter_MorphTargets_v0.ms

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -102,26 +102,23 @@ function eav_get_range_from_mods_con obj &i_t1 &i_t2 =
102102
local props, pr
103103
local t1min = 0, t2max = 0
104104

105-
format "\n\nModifiers:\n"
105+
-- format "\n\nModifiers:\n"
106106

107107
for i = 1 to obj.modifiers.count do
108108
(
109109
cmod = obj.modifiers[i]
110110

111-
format "\n%: \"%\" (%)\n" i (cmod.name) (classof cmod)
111+
-- format "\n%: \"%\" (%)\n" i (cmod.name) (classof cmod)
112112

113-
format "\n%\n" (showProperties cmod)
114113
props = getpropnames cmod
115-
format "\n%\n" props
116-
114+
117115
for pr in props do
118116
(
119117
mod_con = (getPropertyController cmod pr)
120118

121119
--format "% = % (Animatable - %)\n" pr mod_con (isPropertyAnimatable obj pr)
122120
if mod_con == undefined then
123121
(
124-
format "%" (cmod.name == "Morpher")
125122
if cmod.name == "Morpher" then
126123
(
127124
format "% = %" pr cmod[pr]
@@ -139,7 +136,7 @@ function eav_get_range_from_mods_con obj &i_t1 &i_t2 =
139136
continue
140137
)
141138

142-
format "\t%\t(keys: %)\n" pr (mod_con.keys.count)
139+
-- format "\t%\t(keys: %)\n" pr (mod_con.keys.count)
143140

144141
t1 = mod_con.keys[1].time.frame as integer
145142
t2 = (mod_con.keys[mod_con.keys.count].time.frame) as integer
@@ -198,7 +195,7 @@ function eav_exp_obj obj ostream =
198195

199196
if b_ran_set and b_ran_mod_set then
200197
(
201-
format "\nAll ranges set - compare\n"
198+
-- format "\nAll ranges set - compare\n"
202199
-- Set smallest first key, and latest final key
203200
if t1_m < t1 then
204201
(
@@ -212,13 +209,13 @@ function eav_exp_obj obj ostream =
212209
)
213210
else if( not b_ran_set )and( b_ran_mod_set )then
214211
(
215-
format "\nTrans range not set\n"
212+
-- format "\nTrans range not set\n"
216213
t1 = t1_m
217214
t2 = t2_m
218215
)
219216
else if( not b_ran_mod_set )and( b_ran_set )then
220217
(
221-
format "\nmods range not set\n"
218+
-- format "\nmods range not set\n"
222219
-- all values t1, t2 - save in initial state
223220
)
224221
else if( not b_ran_set )and( not b_ran_mod_set )then

0 commit comments

Comments
 (0)