Category definition for tutorials


(Zachary Lewis) #1

Tutorials for using FlashPunk to do freakin’ awesome stuff.

Formatting

When writing tutorials, make sure you use proper formatting. The FlashPunk Developers community uses markdown to format comments. It also supports GitHub-flavored code blocks.

For example, this input:

```actionscript
public function foo(bar:String):void
{
  trace("foo", bar);
}
```

will display the following:

public function foo(bar:String):void
{
  trace("foo", bar);
}

Help us migrate and update old tutorials!
(Jacob Albano) #2

I’m more than happy to get working on converting the old tutorials from the Wayback Machine. Where should they go?


(Zachary Lewis) #3

You can just post them in the tutorials category!

I’d like to compile a list of the most up-to-date tutorials and host them at http://useflashpunk.net, so if you use markdown to format the imported tutorials, that would be awesome. I don’t know how many of them are up-to-date for the most recent version of FlashPunk, or how many are unnecessary due to updates, so focus on getting ones that are the most recent.

Additionally, I’ll create a new topic from this post to help organize the effort to recover those tutorials, and you can take the reigns on that!


Help us migrate and update old tutorials!