Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Darkfirewolf5

Pages: [1]
1
Support / Re: Tilemap Painting
« on: February 06, 2014, 04:42:23 pm »
So I just hacked this together,

                  if(usePaintStyle == true)
                  {
                     RectangleDragEnd();
                     RectangleDragBegin();
                     cursorX0 = cursorX;
                     cursorY0 = cursorY;
                  }



........
            case 'g':
               ev.Use();
               if(usePaintStyle)
               {
                  usePaintStyle = false;
               }
               else
               {
                  usePaintStyle = true;
               }
               break;


Is what I did, so far it is working great! Thanks :)

2
Support / Re: Tilemap Painting
« on: February 06, 2014, 04:16:54 pm »
 :'(

Sorry I dont mean to sound so help less, but I have looked over the code and I just cant seem to locate that file you listed...I feel dumb

Edit: edit i am done finally found it..

3
Support / Re: Tilemap Painting
« on: February 06, 2014, 02:56:02 am »
Thanks for that info,

I tried finding where to put it in that file but i didn't find any of that code, I wasnt able to find it, could it be added back in the future updates like maybe when you click the pencil icon and hold it, it will bring up more options and you can select it much like how Photoshop's UI is, thanks for the help though!

4
Support / Re: Tilemap Painting
« on: February 05, 2014, 11:29:47 pm »
Sorry,

I dont think I explained it too well, I am talking about the placing of tiles, I dont like the box style placing, I want to be able to left click and hold it and move the move to paint tiles instead of making a giant rectagle, painting the selected tiles to the tilemap ATM is not that great,

Essentially I do NOT want to place tiles by doing a rectangular type box painting.

5
Support / Tilemap Painting
« on: February 02, 2014, 04:13:01 am »
Tilemap painting,

Tried to find information about the tile map painting with edge detection was not able to find anything on that at all or how to work it,

Also want to know when we will have painting for tilemap that isnt rectangle base painting, I mean painting much like MS Paint or such, it would make map creation alot easier

Pages: [1]