注册会员 登录
Project1 返回首页

汪汪的个人空间 https://rpg.blue/?171386 [收藏] [复制] [分享] [RSS]

日志

分享 【小白】机翻注释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|87 次阅读|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|51 次阅读|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|56 次阅读|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|127 次阅读|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|60 次阅读|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|66 次阅读|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|68 次阅读|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|73 次阅读|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|72 次阅读|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|58 次阅读|0 个评论
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2024-4-27 23:00

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

返回顶部