0c0b5f2.jpg (27.85 KB, 下载次数: 28)
01.mp4.jpg (46.64 KB, 下载次数: 22)
132154vb9b0f0f7gt1ufyt.jpg (62.65 KB, 下载次数: 26)
tomlee1980 发表于 2016-8-10 19:58
请问哪里可以下载1.3版啊 ?
(function(){ 'use strict'; WebAudio.prototype._onXhrLoad = function(xhr) { var array = xhr.response; if(Decrypter.hasEncryptedAudio) array = Decrypter.decryptArrayBuffer(array); this._readLoopComments(new Uint8Array(array)); WebAudio._context.decodeAudioData(array, function(buffer) { this._buffer = buffer; this._totalTime = buffer.duration; if (this._loopLength > 0 && this._sampleRate > 0) { this._loopStart /= this._sampleRate; this._loopLength /= this._sampleRate; } else { this._loopStart = 0; this._loopLength = this._totalTime; } this._onLoad(); }.bind(this)); }; })();
(function () { 'use strict'; var TileRenderer = PIXI.WebGLRenderer.__plugins.tile; TileRenderer.prototype.checkIndexBuffer = function(size) { // the total number of indices in our array, there are 6 points per quad. var totalIndices = size * 6; var indices = this.indices; if (totalIndices <= indices.length) { return; } var len = indices.length || totalIndices; while (len < totalIndices) { len <<= 1; } indices = new Uint16Array(len); this.indices = indices; // fill the indices with the quads to draw for (var i=0, j=0; i < len; i += 6, j += 4) { indices[i + 0] = j + 0; indices[i + 1] = j + 1; indices[i + 2] = j + 2; indices[i + 3] = j + 0; indices[i + 4] = j + 2; indices[i + 5] = j + 3; } this.indexBuffer.upload(indices); }; TileRenderer.prototype.getVb = function(id) { this.checkLeaks(); var vb = this.vbs[id]; if (vb) { vb.lastTimeAccess = Date.now(); return vb; } return null; }; })();
//============================================================================= // BugFixScreenFlash.js // ---------------------------------------------------------------------------- // Copyright (c) 2015-2016 Triacontane // This software is released under the MIT License. // [url]http://opensource.org/licenses/mit-license.php[/url] // ---------------------------------------------------------------------------- // Version // 1.0.0 2016/08/11 初版 // ---------------------------------------------------------------------------- // [Blog] : [url]http://triacontane.blogspot.jp/[/url] // [Twitter]: [url]https://twitter.com/triacontane/[/url] // [GitHub] : [url]https://github.com/triacontane/[/url] //============================================================================= /*: * @plugindesc Bug fix Screen Flash for Web GL * @author triacontane * * @help Bug fix Screen Flash for Web GL * * This plugin is released under the MIT License. */ /*:ja * @plugindesc 画面のフラッシュバグ修正プラグイン * @author トリアコンタン * * @help WebGLモードにて同じマップで連続して異なる色を指定して「画面のフラッシュ」を * 実行した際に後に指定したフラッシュ色が反映されない問題を修正します。 * この問題は本体バージョン1.3.0にて新たに発生するようになりました。 * * このプラグインにはプラグインコマンドはありません。 * * 利用規約: * バグ修正プラグインにつき規約なしの無条件でご利用頂けます。 */ (function() { 'use strict'; ScreenSprite.prototype._renderWebGL = function(renderer) { this._bitmap.checkDirty(); PIXI.Sprite.prototype._renderWebGL.call(this, renderer); }; })();
id400200 发表于 2016-8-12 13:55
有没有发现,道具跟技能的动画选择下拉栏不能用,事件出现条件,道具跟人物栏的下拉也不能用- - ...
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |