Defold

スポンサーリンク
Defold

【Defold】「Cycle detected on node type editor.collection/CollectionNode and output」 エラーの原因と対応方法

ビルドすると以下の様なエラーが発生してしまいました。java.lang.AssertionError: Assert failed: Cycle detected on node type editor.collection/Collect...
Defold

【Defold】local と self, そして go.property の使い分け

Defold でスクリプトを書いていると、慣れないうちは変数の宣言に localと self, そして go.property のどれを使えば良いのか迷うことがあります。僕も迷っていました。しかしDefold フォーラムの When to ...
Defold

【Defold】rendercam アセット使用時にカーソルの位置がズレてしまう

rendercam.screen_to_world_2d で変換する必要があります。function on_input(self, action_id, action) if not action_id or action_id == ha...
Defold

【Defold】hex値からvmath.vector4 の色情報へ変換

ソースコードlocal function to_color(new_color) local r = tonumber('0x' .. string.sub(new_color, 2,3), 16) / 255 local ...
Defold

【Defold】Windows などのラップトップ環境でWindow サイズを変更する

render API に resize メッセージを送ります。サンプルコードmsg.post("@render:", "resize", { width = 1024, height = 768 } )お知らせ
スポンサーリンク