This translation is community contributed and may not be up to date. We only maintain the English version of the documentation. Read this manual in English
New Project ウィンドウに独自のカスタムプロジェクトテンプレート(project template)を追加できます。

カスタムプロジェクトテンプレートを含む新しいタブを1つ以上追加するには、ユーザーのホームディレクトリ内の .defold フォルダーに welcome.edn ファイルを追加する必要があります。
.defold という名前のフォルダーを作成します。
C:\Users\**Your Username**\.defold/Users/**Your Username**/.defold~/.defold.defold フォルダーに welcome.edn ファイルを作成します。welcome.edn ファイルは Extensible Data Notation 形式を使用します。次に例を示します。
{:new-project
{:categories [
{:label "My Templates"
:templates [
{:name "My project"
:description "My template with everything set up the way I want it."
:image "empty.svg"
:zip-url "https://github.com/britzl/template-project/archive/master.zip"
:skip-root? true},
{:name "My other project"
:description "My other template with everything set up the way I want it."
:image "empty.svg"
:zip-url "https://github.com/britzl/template-other-project/archive/master.zip"
:skip-root? true}]
}]
}
}
これにより、上のスクリーンショットに示したテンプレートの一覧が作成されます。
テンプレートの画像には、エディターに同梱されている画像のみ使用できます。
Did you spot an error or do you have a suggestion? Please let us know on GitHub!
GITHUB