Jump to content
SubSpace Forum Network

Recommended Posts

Posted

i just fixed something on your replace brush... you were using something like:

 

for i = - width \ 2 to width \ 2
		[blah]
	 next

 

like we used in several other places... but there is a problem with it rounding up weird on odd numbers... so the way to do it from now on would be this:

 

offset = (width-1) \ 2

startx = startx - offset
starty = starty - offset
endx = endx - offset
endy = endy - offset

for i = 0 to width
[blah]
next

 

that way, we make sure the size is correct, and the same offset is applied to all coordinates

Posted

another thing, I had MGB to fix the "quick link to projects" thread on his forums, but you'd have to edit this post:

 

http://forums.minegoboom.com/viewtopic.php?p=61172

and replace it with what i have posted in the last post of that topic, and remove the older attachments in that topic smile.gif

you could upload the 1.2.7 setup exe in there I guess

 

edit: i just noticed drake7707 appears as 'guest' .. so perhaps you cant edit your post.. hmm... i'll ask mgb to change the post's ownership i guess , thats what he did for the "quick link to projects" thread smile.gif

Guest
This topic is now closed to further replies.
×
×
  • Create New...