- Box2D for Flash Games
- Emanuele Feronato
- 239字
- 2021-08-05 18:44:25
Hello Box2D World
Box2D is free and open source, so you won't need to install components or deal with SWC files. All you need to do to include it in your projects is to include the required classes.
Open Main.as
and write the following code snippet:
package { import flash.display.Sprite import Box2D.Dynamics.*; import Box2D.Collision.*; import Box2D.Collision.Shapes.*; import Box2D.Common.Math.*; public class Main extends Sprite { public function Main() { trace("my awesome game starts here"); } } }
Test the movie and you should see my awesome game starts here in your Output window. This means you have successfully imported the required classes.
There isn't that much to say about the code we just wrote, as we are just importing the classes needed to make our Box2D project work.
When I gave the Hello Box2D World title, I did not mean to create just another "Hello World" section, but I wanted to introduce the environment where all Box2D simulation and events take place: the world.
The world is the stage where the simulation happens. Everything you want to be ruled by the Box2D physics must be inside the world. Luckily, the Box2D World is always big enough to contain everything you need, so you don't have to worry about world boundaries. Just remember everything on a computer has limits in one way or another. So, the bigger the world, the heavier will be the work for your computer to manage it.
- InfluxDB原理與實戰(zhàn)
- SQL Server 2008數(shù)據(jù)庫應(yīng)用技術(shù)(第二版)
- MongoDB管理與開發(fā)精要
- SQL查詢:從入門到實踐(第4版)
- 數(shù)據(jù)庫技術(shù)及應(yīng)用
- 深入理解InfluxDB:時序數(shù)據(jù)庫詳解與實踐
- 聯(lián)動Oracle:設(shè)計思想、架構(gòu)實現(xiàn)與AWR報告
- 云計算寶典:技術(shù)與實踐
- Spring MVC Beginner’s Guide
- 離線和實時大數(shù)據(jù)開發(fā)實戰(zhàn)
- SOLIDWORKS 2018中文版機械設(shè)計基礎(chǔ)與實例教程
- Oracle 內(nèi)核技術(shù)揭密
- 工業(yè)大數(shù)據(jù)融合體系結(jié)構(gòu)與關(guān)鍵技術(shù)
- Machine Learning for Mobile
- Learn Selenium