I will give you all the code to my wonderful(I think it is) particle program... (please leave my name as original creator intact and give me kudos) if someone; promises to make it into a fast variable IanM style program;
I will give you all the code, bitmaps and the x file.
All you have to do is make it into types and make sure it is the fastest!
I need assurance!!!!
IanM says
Quote: "+ Code Snippet
dim PosX(10)
dim PosY(10)
dim Speed(10)
dim Direction(10)
PosX(1)=1
PosY(1)=1
Speed(1)=4
Direction(1)=10
Is less efficient than this code:
+ Code Snippet
type Info_t
Speed
Direction
X
Y
endtype
dim Info(10) as Info_t
Info(1).Speed=4
Info(1).Direction=10Info(1).X=1
Info(1).Y=1
"