Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
Pular tela de título
2 participantes
Aldeia RPG :: RPG Maker :: RPG Maker MV/MZ :: Plugins
Página 1 de 1
Pular tela de título
cód:
Cred: Faytless
- Código:
//=============================================================================
// Toms_GameTitleSkip
// by Faytless / Thomas Pham
// Date: 10/25/2015
//=============================================================================
/*:
* @plugindesc This plugin will take you directly to Hero Start Point.
* @author Faytless / Thomas Pham
*
*/
(function() {
var parameters = PluginManager.parameters('Toms_GameTitleSkip');
var _Scene_Title_Manager = Scene_Title.prototype.start;
var _Scene_Title_BackgroundClear = Scene_Title.prototype.createBackground;
var _Scene_Title_ClearText = Scene_Title.prototype.drawGameTitle;
Scene_Title.prototype.start = function()
{
this.fadeOutAll();
SceneManager.goto(Scene_Map);
};
Scene_Title.prototype.createBackground = function(){
this._backSprite1 = new Sprite(ImageManager.loadTitle1());
this._backSprite2 = new Sprite(ImageManager.loadTitle2());
this.addChild(this._backSprite1);
this.addChild(this._backSprite2);
}
Scene_Title.prototype.drawGameTitle = function() {
var x = 20;
var y = Graphics.height / 3;
var maxWidth = Graphics.width - x * 2;
var text = $dataSystem.gameTitle;
this._gameTitleSprite.bitmap.outlineColor = 'black';
this._gameTitleSprite.bitmap.outlineWidth = 8;
this._gameTitleSprite.bitmap.fontSize = 0;
this._gameTitleSprite.bitmap.drawText(text, x, y, maxWidth, 48, 'center');
};
})();
Cred: Faytless
Kies- Diva
- Mensagens : 1155
Créditos : 124
Ficha do personagem
Nível: 1
Experiência:
(0/0)
Vida:
(30/30)
Komuro Takashi- Colaborador
- Mensagens : 1047
Créditos : 130
Tópicos semelhantes
» RMXP - Pular obstaculos de Tilesets
» Script de pular em tiles bloqueados
» Pular + impuso [ Funcionando VX e VXA tambem ]
» Sistema Que Permite Seu Char Pular
» Plataformas em Movimento + Correr + 8 Direções + Pular
» Script de pular em tiles bloqueados
» Pular + impuso [ Funcionando VX e VXA tambem ]
» Sistema Que Permite Seu Char Pular
» Plataformas em Movimento + Correr + 8 Direções + Pular
Aldeia RPG :: RPG Maker :: RPG Maker MV/MZ :: Plugins
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos