Unsure if this is the area to post something about darkclouds, but I guess I'll go with it.
I recently bought Darkclouds and was having some fun with it, until I tried to move my camera into the clouds.
When that happened the clouds stopped appearing, and No matter what I did, I couldn't see them again until I ran the program again.
I noticed that DarkClouds have 3 versions, so I downloaded the oldest version to see if it had the same problem, it didn't. I was able to fly above the clouds, into them, and all that lovely stuff.
I'm trying to figure out why The newest version of DarkClouds has this problem, but I'm coming up at a loss.
Heres my code
Rem Project: Sky flying
Rem Created: Tuesday, March 08, 2011
Rem ***** Main Source File *****
sync on
sync rate 40
dc set cloudy 1
dc set cloud height 40
dc set brightness 0
dc set auto brightness 0
dc set wind 9999,270
dc init 1, 5
time#=7.0
dc update time#
texture backdrop 1
position camera 0,25,0
speed = 0
do
if inkey$() = "=" then speed = 0
if inkey$() = "." then inc speed
if inkey$() = "," then inc speed
text 10, 10, "Speed: " + str$(speed) + "Mph"
roll camera right 0, rightkey() - leftkey()
pitch camera up 0, downkey() - upkey()
move camera 0, speed
time#=time#+100/216000
sync
dc update time#
LOOP