May 2012
M T W T F S S
« Jun    
 123456
78910111213
14151617181920
21222324252627
28293031  

35 Tutorials to create amazing Vector Graphics using Inkscape

Today i find good tutorials about how create Vector Graphics in Inkscape. Original post you can find here. So now if you need draw some graphic to your game you can study tutorial first. Think this info help you to create cool vector graphic. By the way Inkscape you can use as free;)

Create a Light Bulb Icon

Vector tutorials with Inkscape

Creating a Coffee Cup

Vector tutorials with Inkscape

Sticker with Folded Edge

Vector tutorials with Inkscape

Illustrating a Rainbow

Vector tutorials with Inkscape

Create a Vector Compass

Vector tutorials with Inkscape

Pac-Man Baddies

Vector tutorials with Inkscape

Illustrate A Peacock

Vector tutorials with Inkscape

How to create a cool looking wallpaper

Vector tutorials with Inkscape

Rubber Stamp

Vector tutorials with Inkscape

Create a Snail

Vector tutorials with Inkscape

Create a chibi Tux penguin

Vector tutorials with Inkscape

Sketch a Dragon

Vector tutorials with Inkscape

Pile of Coins

Vector tutorials with Inkscape

Postage Stamps

Vector tutorials with Inkscape

Shattered / Smashed Text

Vector tutorials with Inkscape

Icon Creation

Vector tutorials with Inkscape

Text and Simple Styling

Vector tutorials with Inkscape

Realistic Vector Guitar

Vector tutorials with Inkscape

Chinese Dragon

Vector tutorials with Inkscape

Palm Tree

Vector tutorials with Inkscape

Horse Head

Vector tutorials with Inkscape

An Angry Cat

Vector tutorials with Inkscape

Paper Note

Vector tutorials with Inkscape

Epic Logo

Vector tutorials with Inkscape

Obama Poster

Vector tutorials with Inkscape

Melon Vampire

Vector tutorials with Inkscape

Valentine’s Day hearts

Vector tutorials with Inkscape

Inkscape-tastic icons

Vector tutorials with Inkscape

Inkscaping a Globe with latitude, longitudes.

Vector tutorials with Inkscape

F10 Gears: Drawing the Gears

Vector tutorials with Inkscape

Creating a Goblet

.

Teeworldslike Logo

Make an iPod

Chrome Text

Transparent Sphere

Designing story-based games

  1. The story is what the player does, not what he watches.
  2. List the actions the player actually performs in the game and take a cold hard look at it. Does it sound like fun? (Resist the temptation to embellish. If a cinematic shows the player’s character sneak into a compound, clobber a guard and put on his uniform, the player’s action is “Watch cinematic.” Letting the player click to clobber the guard isn’t much better.)
  3. The only significant actions are those that affect the player’s ability to perform future actions. Everything else is bells and whistles.
  4. Design a clear and simple interface. The primary task of the interface is to present the player with a choice of the available actions at each moment and to provide instant feedback when the player makes a choice.
  5. The player needs a goal at all times, even if it’s a mistaken one. If there’s nothing specific he wishes to accomplish, he will soon get bored, even if the game is rich with graphics and sound.
  6. The more the player feels that the events of the game are being caused by his own actions, the better — even when this is an illusion.
  7. Analyze the events of the story in terms of their effect on the player’s goals. For each event, ask: Does this move the player closer to or further away from a goal, or give him a new goal? If not, it’s irrelevant to the game.
  8. The longer the player plays without a break, the more his sense of the reality of the world is built up. Any time he dies or has to restart from a saved game, the spell is broken.
  9. Alternative paths, recoverable errors, multiple solutions to the same problem, missed opportunities that can be made up later, are all good.
  10. Don’t introduce gratuitous obstacles just to create a puzzle.
  11. As the player moves through the game, he should have the feeling that he is passing up potentially interesting avenues of exploration. The ideal outcome is for him to win the game having done 95% of what there is to do, but feeling that there might be another 50% he missed.

I find this info on this site.

Tips for game designers

  1. Prototype and test key game elements as early as possible.
  2. Build the game in incremental steps – Don’t make big design documents.
  3. As you go, continue to strengthen what’s strong, and cut what’s weak.
  4. Be open to the unexpected – Make the most of emergent properties.
  5. Be prepared to sell your project at every stage along the way.
  6. It’s harder to sell an original idea than a sequel.
  7. Bigger teams and budgets mean bigger pressure to stay on schedule.
  8. Don’t invest in an overly grandiose development system.
  9. Make sure the player always has a goal (and knows what it is).
  10. Give the player clear and constant feedback as to whether he is getting closer to his goal or further away from it.
  11. The story should support the game play, not overwhelm it.
  12. The moment when the game first becomes playable is the moment of truth. Don’t be surprised if isn’t as much fun as you expected.
  13. Sometimes a cheap trick is better than an expensive one.
  14. Listen to the voice of criticism – It’s always right (you just have to figure out in what way).
  15. Your original vision is not sacred. It’s just a rough draft.
  16. Don’t be afraid to consider BIG changes.
  17. When you discover what the heart of the game is, protect it to the death.
  18. However much you cut, it still won’t be enough.
  19. Put your ego aside.
  20. Nobody knows what will succeed.

I find this info on this site.

Flash bugs

You can vote on flash bugs. For this use Adobe Bug and Issue Management System.

a

Inkscape

I find editor where everyone can create art for flash games. This is their site: Inkscape

An Open Source vector graphics editor, with capabilities similar to Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector Graphics (SVG) file format. Inkscape supports many advanced SVG features (markers, clones, alpha blending, etc.) and great care is taken in designing a streamlined interface. It is very easy to edit nodes, perform complex path operations, trace bitmaps and much more. We also aim to maintain a thriving user and developer community by using open, community-oriented development.

Also you can read more about Inkscape on wikipedia.

I create simple file and what to share with you:)))
i

Adobe TV

On Adobe TV you can find a lot helpful video. In Products you can use FLASH PROFESSIOANL and enjoy with looking.

untitled-3

AS3 API Reference for iPhone

Do you want to read AS3 API class documentation on your iPhone? If yes then enjoy with it:) and tell thanks for Mike Chambers on his blog.

1

mzlmtfzuskb480x480-75

Features include:

-API Documentation for Adobe Flash Player 10, Adobe Flex 3.2, and Adobe AIR 1.5.
-Ability to search and filter by class name.
-View complete API class reference entries.

Tracing your code in Firefox

You know you can trace your code and look to result in output panel. But how test your program if you see to .swf file in browser? Please read more about Flashbug first.

And lets create simple program and test it with Flashbug in Firefox.

Create package:

package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;

public class Main extends MovieClip
{
//constructor
public function Main():void
{
trace("i want check flashbug");
startMyFD();
}

public function startMyFD():void
{
myBtn.useHandCursor = true;
myBtn.label = "click me";
myBtn.addEventListener(MouseEvent.CLICK, moveMyMc);
}

public function moveMyMc(e:MouseEvent):void
{
trace("button was clicked");
myMc.x = 0;
myMc.y = 0;
}
}

}

Create file in Flash IDE(you can find it on source in the end of this post):
f6

And make publish preview in html:
f7

And in flashbug you can see your trace:
f111

Source:

FlashBug

Flashbug - Add-ons for Firefox

Recently i find good add-on for Firefox browser. You can download Firebug from official site of Mozilla. A Firebug extension for Flash. Displays all the running .SWF file trace output. Requires Flash Player Debugger to work properly.

Please click to Add to Firefox button:
f1

f2

f3

f4

f5

Then click to Get flash player debugger
f8

f9

f10

Use snippets if you don't want write the same code every time.

Please read first about snippets and how it use in FlashDevelop.

Here i want to tell you about aSnippet. aSnippet enables you to keep all of your frequently used code snippets (As3, As2, Js, PHP, HTML, MXML…) in one place that’s accessible from any computer. Also //aSnippet is also available via any browser, no download required.
sn1

Download and install aSnippet Flash extension:
sn3

Download and install aSnippet AIR Aplication:
sn4