01-11-2008, 11:45 PM
ile
Basicly, if you move your mouse while it's pressed, the map editor lays down a tile. Even though that tile is already there. Not required, easy fix
Private Sub picScreen_MouseMove
And right above that, under If InEditor Then add
Just to make sure you can edit a tile you just placed.
Basicly, if you move your mouse while it's pressed, the map editor lays down a tile. Even though that tile is already there. Not required, easy fix
Private Sub picScreen_MouseMove
Code:
If CurX = X \ PIX_X And CurY = Y \ PIC_Y And Button = vbLeftButton Then Exit Sub
And right above that, under If InEditor Then add
Code:
CurX = 100
CurY = 100
Just to make sure you can edit a tile you just placed.