Hi there,
i made a small loop, which does a back and forth movement for my camera. The code looks like this:
do
position camera 1, 0, 30, Ort#
if Ort# < 100 and done = 0
Ort# = Ort# + 0.5
if Ort# = 100 then done = 1
endif
if Ort# > -60 and done = 1
Ort# = Ort# - 0.5
if Ort# = -60 then done = 0
endif
loop
The strange thing what happens is, that as long as I increment and decrement my variable Ort by 1 or by 0,5 it works well. But if i increment, decrement only a value of 0,2 or 0,1, the camera just moves forward, but not backward anymore, which it does, when i use 1 or 0.5.
Any ideas why this is?
Thanks!
Heiner
Beeing creative is a profession, not a task