Defold 【Defold】GameObject を表示・非表示にする enable,and disable メッセージを投げることでGameObjectを表示・非表示にすることが出来ます。表示msg.post(url, "disable")非表示msg.post(url, "enable")お知らせ 2019.09.23 DefoldDEVELOP
Defold 【Defold】文字列をZlib圧縮/展開する Defold にはZlibの圧縮展開機能が標準で組み込まれています。Zlib reference確認バージョン 1.2.162 サンプルコードlocal data = "my first zlib test."local compresse... 2019.09.22 DefoldDEVELOP
Defold 【Defold】アプリを再起動させる 実行中にアプリを再起動し、それに加えて再起動時のシーンを指定することも出来る。 local arg1 = '--config=bootstrap.main_collection=/main/main.collectionc'... 2019.09.21 DefoldDEVELOP
Defold 【Defold】エラーハンドリングするためのコールバック関数を登録する ランタイムエラーは sys.set_error_handler を使えばキャッチできます。local function game_error_handler(source, message, traceback) print(source)... 2019.09.20 DefoldDEVELOP
Defold 【Defold】Sprite のインスタンス上限について game.project ファイルを開き、sprite related settings → Max Count を変更するとSpriteのインスタンス上限を設定できる。デフォルトは128になっていて、これを超えるインスタンスは生成されず画... 2019.09.19 DefoldDEVELOP