Skip to content

Commit

Permalink
3D機能。リリース
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikemokuMK committed Jun 6, 2020
1 parent 02fc8c7 commit b1db410
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 195 deletions.
4 changes: 4 additions & 0 deletions release/master_tyrano/data/system/Config.tjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
// trueで有効 false で無効です。
;useCamera = true;

// 3D機能を利用できるようにする
// trueで有効 false で無効です。
// 有効にすると起動時間が長くなりますので、必要ない場合はfalseが推奨です。
;use3D = false;

//-------------------------------------------- ウィンドウや動作の設定 -----

Expand Down
2 changes: 2 additions & 0 deletions release/minify.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
"plugins/kag/kag.tag_camera.js",
"plugins/kag/kag.tag_vchat.js",
"plugins/kag/kag.tag_ar.js",
"plugins/kag/kag.tag_three.js",


);

Expand Down
4 changes: 2 additions & 2 deletions tyrano/plugins/kag/kag.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tyrano.plugin.kag ={
x:0,
y:0,
enable:-1,
mode:1,
mode:0,


},
Expand Down Expand Up @@ -1088,7 +1088,7 @@ tyrano.plugin.kag ={
//追加分のプロジェクトファイルの読み込み
var array_scripts = [];

if(this.kag.config["3d"]=="true"){
if(this.kag.config["use3D"]=="true"){

array_scripts = [

Expand Down
Loading

0 comments on commit b1db410

Please sign in to comment.