赞 | 17 |
VIP | 6 |
好人卡 | 3 |
积分 | 10 |
经验 | 2591 |
最后登录 | 2024-3-18 |
在线时间 | 251 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1044
- 在线时间
- 251 小时
- 注册时间
- 2016-9-2
- 帖子
- 126
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- /*:
- * @plugindesc 测试使用的脚本
- * @author 雪在燃
- *
- * @param isNotTitle
- * @desc 是否开启跳过标题画面功能(on/off)
- * @default on
- *
- * @help 自用的脚本,包含一个在场景里画出制定位置的方法,以及一个跳过标题
- * 画面的脚本
- */
- var jsTool = {};
- (function () {
- var parameters = PluginManager.parameters('jsTool');
- var isNotTitle = String(parameters['isNotTitle'] || 'on');
- var color = "";
- function randColor() {
- var num = ~~(Math.random()*90+10);
- var num2 = ~~(Math.random()*90+10);
- var num3 = ~~(Math.random()*90+10);
- return "#"+num+num2+num3;
- }
- jsTool.dragX = function (x) {
- color = randColor();
- var sprite = new Sprite(new Bitmap(2, Graphics.boxHeight));
- sprite.bitmap.fillAll(color);
- sprite.x = x;
- SceneManager._scene._windowLayer.addChild(sprite);
- }
- jsTool.dragY = function (y) {
- var sprite = new Sprite(new Bitmap(Graphics.boxWidth, 2));
- sprite.bitmap.fillAll(color);
- sprite.y = y;
- SceneManager._scene._windowLayer.addChild(sprite);
- }
- jsTool.msg = function (msg) {
- console.log(msg);
- }
- var _old_sceneBoot_start = Scene_Boot.prototype.start;
- Scene_Boot.prototype.start = function () {
- if (isNotTitle == 'on') {
- DataManager.setupNewGame();
- SceneManager.goto(Scene_Map);
- } else {
- _old.call(this);
- }
- }
- })();
复制代码
包含一个在x点画一条横线,在y点画一条竖线的方法,以及一个跳过标题画面的脚本
主要是测试脚本很频繁,不需要标题画面,想想可能有人需要跳过标题画面,就发出来呗! |
评分
-
查看全部评分
|