高度,寬度,背景色,將物體放置在房間等等。誰能幫我?如何在純動作中設置遊戲室?
回答
創建一個精靈。 var room:Sprite = new Sprite();
獲取圖形對象。 var g:Graphics = room.graphics;
抽獎:
g.beginFill(0xFF0000, 1);
g.drawRect(0,0,800,600);
g.endFill();
沖洗和重複。孩子們通過room.addChild(chair);
被添加到「房間」,但他們是以相同的方式創建的。
有很多關於如何啓動一個簡單的項目的教程。
http://www.senocular.com/flash/tutorials/as3withmxmlc/ http://www.senocular.com/flash/tutorials.php
如果您使用免費的開源IDE FlashDevelop中,那麼你可以設置在屬性面板的屬性。
如果你有,你可以使用SWF meta標籤來定義道具純ActionScript項目:
[SWF(width='800', height='600', backgroundColor='#000000', frameRate='30')]
沒有更多的信息,我真的不能回答遠不止這些。
閱讀說明書。認真。
livedocs好:http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/ – 2009-10-16 14:17:56
// An 800x600 black room with a red ball, you say?..
//
// This is written & tested in Flash CS4.
// Hopefully you just need some sample code to explore,
// also I recommend geting familiar with the AS3 language reference:
// http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/
// Background: a black rectangle.
var background:Sprite = new Sprite();
with(background.graphics) {
beginFill(0x000000, 1.0);
drawRect(0, 0, 800, 600);
endFill();
}
addChild(background); // add it to the stage
// Red ball.
var ball:Sprite = new Sprite();
with(ball.graphics) {
beginFill(0xff0000, 1.0);
drawCircle(0, 0, 100);
endFill();
}
addChild(ball);
// Start the ball in the center of the room
ball.x = 400;
ball.y = 300;
// When we click the ball, move it to a new location.
ball.addEventListener(MouseEvent.CLICK, moveBall);
function moveBall(e:MouseEvent) :void {
ball.x = Math.random() * 800;
ball.y = Math.random() * 600;
}
// Hope this helps... Flash & Actionscript 3 is a very rich environment,
// there's a lot to learn & discover. I learn new tricks with each project.
你寫了整個事情! :-p考慮到OP的問題,我不知道這是否有幫助,但你可以得到積分:-p – 2009-10-16 14:17:19
這花了不到5分鐘的時間!我寫了更多的AS3,而不是我所承認的,現在我可以在睡眠中做到這一點...... – zkarcher 2009-10-16 23:59:45
的Flash Adventure Game Tutorial,Creating a level和Loading a level前兩篇文章,告訴你如何創建一個2D地圖,免費TAT關卡編輯器,然後在Flash遊戲的顯示。後面的文章介紹了將關卡添加到關卡中,然後將它們加載到遊戲中。
- 1. 如何設置iOS遊戲?
- 2. 如何將任何物體在遊戲製作工作室
- 3. 用XNA遊戲工作室在2D遊戲按鍵拍攝
- 4. 遊戲製作工作室:當我運行遊戲
- 5. 遊戲製作工作室,導入遊戲
- 6. 如何在XNA遊戲工作室中旋轉Texture2D?
- 7. 在android工作室的井字遊戲
- 8. 遊戲製作工作室視覺bug
- 9. ds_list在遊戲製作工作室中工作不正常
- 10. XNA遊戲工作室4.0使用C#
- 11. 遊戲機製造商工作室place_meeting
- 12. 如何設置Google Play遊戲登錄?
- 13. 遊戲製作工作室完全在GUI中寫入
- 14. 遊戲製作工作室 - 防止物體垂直滑動
- 15. 如何在java applet遊戲中製作保存遊戲?
- 16. 在R中設置拼字遊戲
- 17. 在遊戲中設置時間限制
- 18. 在遊戲中設置兩個玩家
- 19. Java3D遊戲動作
- 20. Socket io多個遊戲室
- 21. 在Android遊戲製造商工作室(yoyo遊戲)的網址方案?
- 22. 設置遊戲計時器
- 23. 設置延遲libgdx遊戲
- 24. Flash設置和Android遊戲
- 25. Phantom遊戲設置與Typescript
- 26. 設置Java遊戲塊
- 27. 遊戲中心的具體遊戲設置
- 28. 如何在2D遊戲中移動NSImageView?
- 29. 如何使物體在遊戲板動作中移動
- 30. 用純動作或Adobe Flash CS4專業版開發遊戲
你可能想進入更詳細清楚哪些是你認爲「遊戲室」 - 這可能意味着不同的事情,不同的人 – Sean 2009-10-14 22:47:48
我把它這是3D? – 2009-10-14 22:49:45
2d。我只是指可以定義大小和放置對象的房間。例如,一個黑色背景的800x600房間,其中有一個球形對象。 – akway 2009-10-14 22:56:54