DEVELOP 【Defold】label コンポーネントの使い方 文字列表示用の label コンポーネント操作一覧です。公式リファレンスLabel text components in Defold操作一覧テキストのセットlabel.set_text(url, "hello!")colorgo.set(... 2020.07.25 DEVELOP
Defold 【Defold】カウントダウン処理を実装する local M = {} function M.new() local instance = {} instance.handle = 0 instance.countdown = 0 instance.current_countdown ... 2020.07.23 DefoldDEVELOP
Defold 【Defold】複数のテクスチャを選択してアトラスを作成できる「editor-script-atlas」エディター拡張アセット 「editor-script-atlas」アセットは、アトラスに画像を追加し選択した画像から新しい画像を作成するためのエディタースクリプトです。アセットページライブラリのURL依存するライブラリなし。使い方アトラスにまとめたいテクスチャを ... 2020.07.22 DefoldDEVELOP
Defold Defold 1.2.171 がリリースされました Defold のバージョン 1.2.171 がリリースされました。詳細Defold 1.2.171 has been released - Release notes - Defold game engine forumそして夏が始まったた... 2020.07.21 DefoldDEVELOP
Defold 【Defold】HTTP Requests する GET local function handle_response(self, id, response) print(response.status, response.response)end http.request(" "GET"... 2020.07.20 DefoldDEVELOP