本文介绍了我如何学习Flash游戏开发?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前是PHP程序员和我童年的一个梦想是建立一个游戏。

I'm currently a PHP programmer and one of my childhood dreams is to create a game.

现在的问题是我不知道的Flash。我不是很擅长画的东西,甚至艺术。我可以编写一个小的JavaScript,我可以考虑用自己的JQuery中间。

The problem is I don't know Flash. I'm not great at drawing stuff or even artistic. I could program a little with JavaScript and I could consider myself intermediate with JQuery.

我如何开始使用Flash游戏开发?什么样的书我读的第一?

How do I get started with Flash Game development? What books do I read first?

游戏的类型是关于一个印第安纳琼斯式的性格侧面滚轮和设置在丛林中的树木和蛇和很多动物。

The type of game is a side scroller about an Indiana Jones type of character and the setting is on the jungle with trees and snakes and a lot of animals.

推荐答案

两年半前,我正好是你在哪里。我自从学会闪存,并发布了几个流行的游戏。下面是我发现一路走来:

Two and half years ago I was exactly where you were. I've since learned Flash and released a couple of popular games. Here's what I found out along the way:

  • 闪光CS不是程序员编写的Flash游戏的好工具。请使用闪光灯开发(免费)或Flash Builder中(Adobe的IDE,具有更好的集成和调试,而不是免费的)。
  • 在我发现科林Moock的基本的ActionScript 3.0是一个极好的介绍AS3和概述。
  • 在AS3是从PHP完全不同的语言。它更面向对象,非常类似于Java。此外,它的事件系统可能会显得相当混乱在第一。
  • 在我发现托尼·帕的基于区块的游戏教程中相当有用,即使不是创建一个基于区块的游戏。
  • 阅读每一个岗位的AS3提示该线程
  • 从小事做起,用最简单的游戏,你会真正完成并发布。
  • Flash CS is not a good tool for programmers to write Flash games. Use either Flash Develop (free) or Flash Builder (Adobe's IDE with better integration and debugging, but not free).
  • I found Colin Moock's "Essential Actionscript 3.0" to be an excellent introduction and overview of AS3.
  • AS3 is quite a different language from PHP. It's much more Object-Oriented, very similar to Java. Also, its event system may seem quite confusing at first.
  • I found Tony Pa's tile based game tutorials quite useful, even if not creating a tile-based game.
  • Read every post in this thread of AS3 tips.
  • Start small, with the simplest possible game you'll actually finish and release.

这篇关于我如何学习Flash游戏开发?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-22 21:37