Finding good art for your games is not an easy task. And if your budget is 0$ finding art is really hard. Here is my list of sites where you can find free and legal art resources for your games.
1. opengameart.org - amazing collection of cool stuff. Your number one stop for art resources.
2. openclipart.org - cool vector art made with inkscape. Actually inkscape is something very useful for creating simple but stunning vector images
3. google.com - I don't need to describe this one or you've lived in a cave somewhere. You can use google image search and select an appropriate image license from the options.
Friday, December 27, 2013
Saturday, December 21, 2013
Free Christmas and winter art
Here are some images that I decided to make available. You can use them under the Creative Commons Attribution 3.0 License(CC by 3.0) - so basically you can use them even for commercial projects as long as you provide a link back to this blog.
A set of winter backgrounds:
A set of winter backgrounds:
Wednesday, December 18, 2013
Get Dinner Frenzy free for your site
Later I am on eating theme. I make games with food, games with eating food and so on. Maybe I am too hungry and need to eat more?
Anyway Dinner Frenzy - Healthy Eating is fun little game with small yellow character that eats different kind of foods. If he eats healthy foods like fruits and veggies he gets more points.
Here is the embed code - you can copy it and paste it in your site html.
You can download the game archive directly from mochimedia - Dinner Frenzy.
Thumbnails:
Anyway Dinner Frenzy - Healthy Eating is fun little game with small yellow character that eats different kind of foods. If he eats healthy foods like fruits and veggies he gets more points.
Here is the embed code - you can copy it and paste it in your site html.
You can download the game archive directly from mochimedia - Dinner Frenzy.
Thumbnails:
Friday, November 29, 2013
Get Desperate Battle free for your site
Desperate Battle is an extreme space-themed shooter game. You can get it for your site.
Embed code:
Download game from mochi Zip.
Desperate Battle Thumb
100x100
Embed code:
Download game from mochi Zip.
Desperate Battle Thumb
100x100
Thursday, November 21, 2013
Christmas Typing - another free christmas game for your website
Christmas Typing is free typing game that you can add to your site. Celebrate Christmas and learn to type faster.
Embed Code:
Download game from mochi ChristmasTyping
Christmas Typing Thumbs
100x100
Embed Code:
Download game from mochi ChristmasTyping
Christmas Typing Thumbs
100x100
Monday, November 4, 2013
Where to find quality free music and sound effects for your games
Music and sound effects are an important part of the game. Probably if you don't have them, your game will be overlooked by the players and portal owners and eventually you will consider it a failure. Although that is not always true and there are great games without any sound, its always better to have some high quality effects and nice music. Many people don't include music because they don't know where to find it.
I'll share with you where I choose music and effects for my games.
I'll share with you where I choose music and effects for my games.
- incompetech.com - great music by Kevin MacLeod, licensed under Creative Commons: By Attribution 3.0. You can learn more about CC3 license here - Creative Commons 3.0
- newgrounds.com - at the good, old newgrounds you will be able to find anything, just be careful with the license
- opengameart.org - a lot of random game resources. You can find good sound effects and loops made by newbie composers. Again be careful with the licenses
- freesound.org - tons of sound effects and loops. Great place to start your search.
- google.com - just look around for appropriately licensed music
Thursday, October 24, 2013
Space Arena - get free game for your site
Space arena is exactly what it sounds - space arena. :)
You can get this game free for your website.
Embed Code(copy this code and paste it in your site):
Or you can download the game from mochi - download game. Thumbs:
You can get this game free for your website.
Embed Code(copy this code and paste it in your site):
Or you can download the game from mochi - download game. Thumbs:
Wednesday, October 23, 2013
Sunday, January 13, 2013
How to embed sounds and music in FlashDevelop AS3 project
Its really easy. Lets have soundfile sound.mp3 in folder music.
[Embed(source='../music/sound.mp3')]
private var musicClass : Class;
private var mymusic : Sound;
And then this:
myMusic = (new musicClass) as Sound;
myMusic.play();
Here is the full sourcecode:
package
{
public class MusicTest
{
[Embed(source='../music/sound.mp3')]
private var musicClass : Class;
private var myMusic : Sound;
public function MusicTest()
{
myMusic = (new musicClass) as Sound;
}
public function playMusic():void {
myMusic.play();
}
}
}
[Embed(source='../music/sound.mp3')]
private var musicClass : Class;
private var mymusic : Sound;
And then this:
myMusic = (new musicClass) as Sound;
myMusic.play();
Here is the full sourcecode:
package
{
public class MusicTest
{
[Embed(source='../music/sound.mp3')]
private var musicClass : Class;
private var myMusic : Sound;
public function MusicTest()
{
myMusic = (new musicClass) as Sound;
}
public function playMusic():void {
myMusic.play();
}
}
}
Strange Inspiration
For some time I have this idea - a platformer with flixel. Flixel is really cool game library for flash with lots of cool features (and some small things that I don't like but overall very useful library). So I've started a platformer and here right at the start I met an obstacle. And its a big one. I am not good at drawing. Of course I can buy art or find some free stuff but its not fun like this. I want to do it myself. And I want it to be pixel art. But my pixel art is ugly, I am a developer, not an artist and my knowledge about art is mostly theoretical. (I've read every f**** pixel art tutorial that I've found)
So then I thought - why not an ugly game? With constantly complaining character? I like the idea of game character that don't like the game and so on. Sounds cool, right?
So i decided I'll use 8x8 sprites and I'll make them. Actually they are not that ugly that I thought they would be but anyway they fit the idea.
So then I thought - why not an ugly game? With constantly complaining character? I like the idea of game character that don't like the game and so on. Sounds cool, right?
So i decided I'll use 8x8 sprites and I'll make them. Actually they are not that ugly that I thought they would be but anyway they fit the idea.
Subscribe to:
Posts
(
Atom
)