Gryphon Maker. Many options to choose from in this maker. The objective is to create a gryphon using the point and click menus. I drew art with mouse in Inkscape. Use the save button to save a png image of the output to your computer.
This Gryphon maker is extraordinary! I have been looking for some time for a gryphon maker for a story I am writing, and this happens to be the first I have found! Thank you very much for making this.
Thanks for the compliment. It comes down to a lot of practice. Since you already say you know have some understanding on how to make games I will say that adding simple recoloring option is where I would start as it is rather easy.
A quick example, make a shape that is orange turn it into a movie clip. And put the following code in it.
on (Release) { newcustomcolor = new Color("_root.gryphon"); newcustomcolor.setRGB(0xFF6600); }
Now draw a simple grey gryphon shape convert it into a movie clip called gryphon.
Save and run the maker and when you click the orange button your gryphon turns orange. Make lots of buttons with different colors and hex codes for a simple color picker.
Go to a search engine and type: as2 changing colors
You will get many results and various examples on how to change movie clip colors.
awesome btw!
A quick example, make a shape that is orange turn it into a movie clip. And put the following code in it.
on (Release)
{
newcustomcolor = new Color("_root.gryphon");
newcustomcolor.setRGB(0xFF6600);
}
Now draw a simple grey gryphon shape convert it into a movie clip called gryphon.
Save and run the maker and when you click the orange button your gryphon turns orange. Make lots of buttons with different colors and hex codes for a simple color picker.
Go to a search engine and type: as2 changing colors
You will get many results and various examples on how to change movie clip colors.