Jump to content
Message added by TopicLocker3000

This topic was automatically locked after 6 months of inactivity. If you are the topic owner, please contact a moderator to have it unlocked.

Recommended Posts

I think some sort of block alignment would make animating a little bit easier.

Here are some possible scripts.

snapX=32; //change the snapx so it will align with the other blocks.

snapY=32; //change the snapy so it will align with the other blocks.
for (i=0; i<room_width; i+=snapX)
draw_line(i,0,i,room_height);
for (i=0; i<room_height; i+=snapY)
draw_line(0,i,room_width,i);

Also, you need to have a set world size option. Add that as a string so room width and height will align etc.

2D

3D in progress for The Glorious David.

P.S Should work for 3d for the most part but Isn't the best.

var m, n;
m = round(y/vsnap - x/hsnap);
n = round(y/vsnap + x/hsnap);
x = (n - m)/2*hsnap;
y = (n + m)/2*vsnap;

//this is a way to move them most likely what The Glorious David had.

//possibly implementable.

Edited by x33perking
Link to post
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    No registered users viewing this page.

  • Create New...