DEVELOP

スポンサーリンク
DEVELOP

【Defold】label コンポーネントの使い方

文字列表示用の label コンポーネント操作一覧です。公式リファレンスLabel text components in Defold操作一覧テキストのセットlabel.set_text(url, "hello!")colorgo.set(...
Defold

【Defold】カウントダウン処理を実装する

local M = {} function M.new() local instance = {} instance.handle = 0 instance.countdown = 0 instance.current_countdown ...
Defold

【Defold】複数のテクスチャを選択してアトラスを作成できる「editor-script-atlas」エディター拡張アセット

「editor-script-atlas」アセットは、アトラスに画像を追加し選択した画像から新しい画像を作成するためのエディタースクリプトです。アセットページライブラリのURL依存するライブラリなし。使い方アトラスにまとめたいテクスチャを ...
Defold

Defold 1.2.171 がリリースされました

Defold のバージョン 1.2.171 がリリースされました。詳細Defold 1.2.171 has been released - Release notes - Defold game engine forumそして夏が始まったた...
Defold

【Defold】HTTP Requests する

GET local function handle_response(self, id, response) print(response.status, response.response)end http.request(" "GET"...
スポンサーリンク