I've downloaded example project in defold site. it's zip file, how to import it to defold? Do I must create new project and drag all file into it?
Sorry if this is beginner question, thank before.

- 172
- 2
- 5
- 14
-
No, i ask to import project to defold. not unzip or extract. – Aep Saepudin Dec 15 '16 at 03:28
2 Answers
When you open a project for the first time or download, you need to create a "branch", whch is a copy of the project on your computer. Click "New branch" and name your local working copy (like "my work" or similar).
Also Check Your project compatiboly woth your OS Linux/ Windows and 32 bit or 62 bit.
You can learn basic thing from here .
http://www.defold.com/tutorials/getting-started/
Make sure you are using the latest editor and make sure to clear your browser cache.

- 3,018
- 1
- 17
- 34
-
I know for that, i want to explore another tutorial, where downloaded [here] (http://www.defold.com/tutorials/examples/) – Aep Saepudin Dec 15 '16 at 03:58
-
@AepSaepudin Check out Here step by step with video tutorials. http://www.gamefromscratch.com/page/Defold-Engine-Tutorial-Series.aspx/ – Mr. Bhosale Dec 15 '16 at 04:08
I assume you mean these example projects?
If so, follow these steps:
- Create a new project in Defold (from dashboard.defold.com) and open it in the editor
- Right-click "game.project" in the Project Explorer and select Show in Finder (Mac) or Show in Explorer (PC)
- Download and unpack the examples archive you want
- Drag the contents of the archive to the location of the new project in the Finder/Explorer and replace the files in the project The editor will pick up the new files and you are ready to go
Alternatively you can add a project as a library dependency in your project ('importing' the files for read-only use). If so – add the zip url to the "dependencies" in the project section in "game.project" in Defold. See more about library usage here.

- 26
- 3