I've noticed that most sprite commands don't work on a group of sprites. What I'd find useful is exporting a group of sprites to disk.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
pi = 3.1415927
open "sincos.txt" for output as #1
for i=0 to 359
print #1,sin((i * pi) / 180)
print #1,cos((i * pi) / 180)
next i
close #1
int sin[360], cos[360];
...
ParseText ();
repeatparsetext = 1;
...
if (repeatparsetext) {
repeatparsetext = 0;
ParseText ();
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.111 seconds with 16 queries.