Samapico Posted August 15, 2006 Report Posted August 15, 2006 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
Samapico Posted August 15, 2006 Author Report Posted August 15, 2006 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=61172and replace it with what i have posted in the last post of that topic, and remove the older attachments in that topic 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
Drake7707 Posted August 15, 2006 Report Posted August 15, 2006 i don't have an account there, thats why i asked you
Recommended Posts