Project1

标题: 请问有没有修改标题的插件 [打印本页]

作者: CFRoo    时间: 2016-3-7 17:02
标题: 请问有没有修改标题的插件
不知道有没有修改标题的插件.
就是,可以通过图片自定义游戏标题,比如LOGO,标题位置什么的..........VA的时候记得有一个[薄雾年代记标题脚本]....
不知道 MV有没有类似的插件.....
谢谢各位大神.....

{:2_270:}
作者: 汪汪    时间: 2016-3-7 17:31
本帖最后由 汪汪 于 2016-3-7 17:39 编辑

修改下面部分就好

  1. //创建前景
  2. Scene_Title.prototype.createForeground = function() {
  3.     this._gameTitleSprite = new Sprite(new Bitmap(Graphics.width, Graphics.height));
  4.     this.addChild(this._gameTitleSprite);
  5.     if ($dataSystem.optDrawTitle) {
  6.         this.drawGameTitle();
  7.     }
  8. };
  9. //绘制游戏标题
  10. Scene_Title.prototype.drawGameTitle = function() {
  11.     var x = 20;
  12.     var y = Graphics.height / 4;
  13.     var maxWidth = Graphics.width - x * 2;
  14.     var text = $dataSystem.gameTitle;
  15.     this._gameTitleSprite.bitmap.outlineColor = 'black';
  16.     this._gameTitleSprite.bitmap.outlineWidth = 8;
  17.     this._gameTitleSprite.bitmap.fontSize = 72;
  18.     this._gameTitleSprite.bitmap.drawText(text, x, y, maxWidth, 48, 'center');
  19. };
复制代码
比如这样:

JAVASCRIPT 代码复制
  1. (function() {
  2.  
  3. Scene_Title.prototype.createForeground = function() {
  4.     this._gameTitleSprite = new Sprite(ImageManager.loadSystem("ButtonSet"));
  5.     this.addChild(this._gameTitleSprite);
  6.         this._gameTitleSprite.x =  20
  7.         this._gameTitleSprite.y = Graphics.height / 4;
  8.  
  9.     //if ($dataSystem.optDrawTitle) {
  10.      //   this.drawGameTitle();
  11.     //}
  12. };
  13.  
  14.  
  15. })();





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1