Primary tabs

Comments by User

Tuesday, September 19, 2017 - 19:20

I have not made any games with HTML5 but have utilized some of the latest features in web browsers including the canvas to make an HTML5 audio visualizer video maker. You pick an audio file, customize how the visualizer should react to the audio, and it is recorded in real time right in the web browser and saved as a webm video file. Before I started the project I knew nothing about the canvas. By the time I was done I figured out some of the tricks needed to make the performance be optimized. With that being said there are valid points for using the DOM + CSS vs the canvas.

"Additionally, using css, these sprites can be scaled, faded in/out (.opacity), rotated and even 3D transformed."

The canvas can also can do scaling, opacity, and rotations. I'm not sure about 3D transformations. I haven't worked with anything 3D.

I would personally read up on canvas optimizations and see if there is anything that you have missed on how you could squeeze out more performance. Things like using multiple canvases as layers, using smaller hidden canvases for certain operations and drawing those to the main canvas(es) instead of always drawing the image directly, and avoiding costly operations such as context save and restore and instead keep track of changes made reset them yourself or figure out a better way to avoid needing to use it at all.

With that being said if your game is pretty simple and you are getting the performance you want in the DOM then there is nothing wrong with using it. You might run into some consistenty problems though that make it diffucult to support a wide range of web browsers. As mentioned above you could use absolute positioning to avoid the DOM having to reflow the entire document which would give a performance gain. I don't have much else to offer for DOM performance boost tricks.

 

Thursday, September 14, 2017 - 23:03

I've never used RPG maker. Pretty much the concept would be to have variables for each of the stats including the max hp and mp (you would also want them to be saved and loaded from the save file). You would set up a one time event trigger that would lower/raise the stats as you wished outside the towns. No idea how you accomplish that with RPG maker. I'm assuming you can make events that occur when you step on designated tiles.

Friday, September 1, 2017 - 18:29

@Spring Yeah I was mentioning that to VicGuedez. I see so many devs on here asking for art and the majority of them never even have anyone comment on them because they don't know what they are looking for. Posting example graphics is gives a clearer understanding of the style they want and attracts more people.

Friday, September 1, 2017 - 18:20

You're going to have a really hard time finding anyone who will make a full game sketch when you are so vague about what you want. If you wanted to interest people you should post other game art from other games that suits the style you are looking for. Nobody wants to spend hours making art only to be told it isn't wanted.

Friday, August 4, 2017 - 18:19

Same thoughts as EZduzziteh. I've never used color palettes when doing my art. I just use the color wheel and pick colors I like. If I ever want to reuase colors to match something else I open the image and use the color picker. As for judging the car it reminds me of those old arcade racing games. Looks good to me!

Sunday, July 23, 2017 - 16:41

It looks very interesting and I would like to try it, but I'm assuming the download is going to be for Windows? I'm on Linux and my internet speed sucks. I would like to know before I download. I can use a computer with Windows if needed.

Sunday, July 23, 2017 - 15:38

I love the play on words of your name and your username.

Monday, July 17, 2017 - 22:58

The title for the song is so clever and brilliant. I love it!

 

Tuesday, March 7, 2017 - 21:54

It looks good to me. It's a big tree in front of a thick forest of other trees in the background correct?

Sunday, December 25, 2016 - 22:59

That's going to depend on how the program wants the tilesheet to be formatted. What are you using to make the game? I would try searching for some tutorials on tilesheets for the program. You probably have to define the tile sizes, etc before it will work.

Pages