Mirage Source
I've increased the amount of tiles i get width wise on the - Printable Version

+- Mirage Source (https://mirage-engine.uk/forums)
+-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61)
+--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18)
+---- Forum: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=17)
+---- Thread: I've increased the amount of tiles i get width wise on the (/showthread.php?tid=1545)



I've increased the amount of tiles i get width wise on the - wackydude1234 - 04-02-2008

mapeditor, however sometimes when i click the tile on the far right (the additional tile) it is the one on the left and one tile down Sad i changed this code

From this

Code:
Public Sub EditorInit()
    SaveMap = Map
    InEditor = True
    frmMirage.picMapEditor.Visible = True
    With frmMirage.picBackSelect
        .Width = 7 * PIC_X
        .Height = 255 * PIC_Y
        .Picture = LoadPicture(App.Path + "\tiles.bmp")
    End With
End Sub

to this

Code:
Public Sub EditorInit()
    SaveMap = Map
    InEditor = True
    frmMirage.picMapEditor.Visible = True
    With frmMirage.picBackSelect
        .Width = 8 * PIC_X
        .Height = 255 * PIC_Y
        .Picture = LoadPicture(App.Path + "\tiles.bmp")
    End With
End Sub

and then i enlarged the mapeditor's tileviewer area.