SRPG Studio 15章 [無断転載禁止]©5ch.net
■ このスレッドは過去ログ倉庫に格納されています
0604名前は開発中のものです。
2016/06/11(土) 23:05:38.05ID:GLWTsm36var NarrationWindow = defineObject(BaseWindow,
{
_text: '',
drawWindowContent: function(x, y) {
var textui = this.getWindowTextUI();
var font = textui.getFont();
var color = textui.getColor();
TextRenderer.drawText(x, y - 8, this._text, -1, color, font);
},
getWindowWidth: function() {
return 320;
},
getWindowHeight: function() {
return 30;
},
setText: function(text) {
this._text = text;
}
}
);
■ このスレッドは過去ログ倉庫に格納されています