2011-04-16 12:44 PM
2011-04-17 09:24 AM
2011-04-17 10:19 AM
2011-08-13 04:12 PM
ila2 wrote:Just asking again... Is there any tutorial where I can learn how to add different views to an existing object?
There aren't simple way. You have to modify the 2D script for diffrent scale.
2011-08-13 05:10 PM
IF GLOB_SCALE > 50 THEN
Fragment2 1, 0
ELSE
Fragment 2, 0
ENDIF
A little more complex:IF GLOB_SCALE >= 100 THEN
Fragment2 1, 0
ENDIF
IF GLOB_SCALE < 100 AND GLOB_SCALE >= 50 THEN
Fragment2 2, 0
ENDIF
IF GLOB_SCALE < 50 THEN
Fragment2 3, 0
ENDIF
2011-08-14 09:15 PM