设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
分享 【小白】机翻注释mv的 Sprite_Enemy
汪汪 2015-11-4 20:32
//----------------------------------------------------------------------------- // Sprite_Enemy // 敌人精灵 // The sprite for displaying an enemy. // 显示一个敌人的精灵 function Sprite_Enemy() { this.initialize.apply(this, arguments); } Sprite_Enemy.prototype = Object.create(S ...
个人分类: mv: rpg_sprites|90 次阅读|0 个评论
分享 【小白】机翻注释mv的 Sprite_Actor
汪汪 2015-11-4 20:31
//----------------------------------------------------------------------------- // Sprite_Actor // 角色精灵 // The sprite for displaying an actor. // 显示一个角色的精灵 function Sprite_Actor() { this.initialize.apply(this, arguments); } Sprite_Actor.prototype = Object.create(S ...
个人分类: mv: rpg_sprites|54 次阅读|0 个评论
分享 【小白】机翻注释mv的 Sprite_Battler
汪汪 2015-11-4 20:29
//----------------------------------------------------------------------------- // Sprite_Battler // 战斗者精灵 // The superclass of Sprite_Actor and Sprite_Enemy. function Sprite_Battler() { this.initialize.apply(this, arguments); } Sprite_Battler.prototype = Object.create(Sp ...
个人分类: mv: rpg_sprites|59 次阅读|0 个评论
分享 【小白】机翻注释mv的 Sprite_Character
汪汪 2015-11-4 20:28
//----------------------------------------------------------------------------- // Sprite_Character // 人物精灵 // The sprite for displaying a character. // 显示人物的精灵 function Sprite_Character() { this.initialize.apply(this, arguments); } Sprite_Character.prototype = Obje ...
个人分类: mv: rpg_sprites|130 次阅读|0 个评论
分享 【小白】机翻注释mv的 Sprite_Button
汪汪 2015-11-4 20:27
//----------------------------------------------------------------------------- // Sprite_Button // 按钮精灵 // The sprite for displaying a button. // 显示按钮的精灵 function Sprite_Button() { this.initialize.apply(this, arguments); } Sprite_Button.prototype = Object.create(Sp ...
个人分类: mv: rpg_sprites|63 次阅读|0 个评论
分享 【小白】机翻注释mv的 Sprite_Base
汪汪 2015-11-4 20:25
//----------------------------------------------------------------------------- // Sprite_Base // 基础精灵 // The sprite class with a feature which displays animations. // 显示一个动画特征的精灵类 function Sprite_Base() { this.initialize.apply(this, arguments); } Sprite_Base.p ...
个人分类: mv: rpg_sprites|69 次阅读|0 个评论
分享 【小白】机翻注释mv的 Scene_Shop
汪汪 2015-10-31 18:32
//----------------------------------------------------------------------------- // Scene_Shop // 商店场景 // The scene class of the shop screen. // 处理 商店画面 的 场景类 function Scene_Shop() { this.initialize.apply(this, arguments); } Scene_Shop.prototype = Object.create(Sc ...
个人分类: mv: rpg_scenes|70 次阅读|0 个评论
分享 【小白】机翻注释mv的 Scene_Skill
汪汪 2015-10-31 18:31
//----------------------------------------------------------------------------- // Scene_Skill // 技能场景 // The scene class of the skill screen. // 处理技能画面的类 function Scene_Skill() { this.initialize.apply(this, arguments); } Scene_Skill.prototype = Object.create(Scene ...
个人分类: mv: rpg_scenes|77 次阅读|0 个评论
分享 【小白】机翻注释mv的 Scene_ItemBase
汪汪 2015-10-31 18:31
//----------------------------------------------------------------------------- // Scene_ItemBase // 物品基础场景 // The superclass of Scene_Item and Scene_Skill. // 物品场景 和 技能场景 的 超级类 function Scene_ItemBase() { this.initialize.apply(this, arguments); } Scene_Item ...
个人分类: mv: rpg_scenes|75 次阅读|0 个评论
分享 【小白】机翻注释mv的 Scene_Menu
汪汪 2015-10-31 18:29
//----------------------------------------------------------------------------- // Scene_Menu // 菜单场景 // The scene class of the menu screen. // 处理 菜单画面 的 场景类 function Scene_Menu() { this.initialize.apply(this, arguments); } Scene_Menu.prototype = Object.create(S ...
个人分类: mv: rpg_scenes|61 次阅读|0 个评论
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-5-17 08:53

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

返回顶部