- Home /
Importing between projects
I took the 3D Platformer Tutorial course, and am interested in moving scripts and objects in the project into other projects, such as AngryBots. What is the easiest way to do this?
(I'm not sure if this is answered somewhere else, but I'm completely new to this site. I took the course on the YDACS website, which didn't really tell me about this stuff.)
Also, I'm interested in posting a review for the course, where do I go to submit it?
If you want to review a training course I'd make a post on an appropriate part of the forums - like education or something.
Answer by whydoidoit · May 17, 2013 at 06:09 PM
You should highlight the items you want to move between projects and use right-click Export to create a .unitypackage file that you can then import into the new project either by double clicking it or by using Assets > Import > Custom Package.
Creating an export also handles finding any related files which are required.
I seem to have some difficulty in moving scripts-- it says I have to choose Java, C#, or Boo. I'm not sure what it is.
A sample of the code: // The speed when walking var walkSpeed = 3.0; // after trotAfterSeconds of walking we trot with trotSpeed var trotSpeed = 4.0; // when pressing "Fire3" button (cmd) we start running var runSpeed = 6.0;
var inAirControlAcceleration = 3.0;
Near the beginning of the text. It's for a third person movement script.
Your answer
Follow this Question
Related Questions
Texture not showing detail on inported mesh. 1 Answer
Stopping the 270 degree FBX default rotation on import 6 Answers
skinmesh component is not in mesh? 0 Answers
Disabling reimport before building of AssetBundle 0 Answers
I imported a unitypackage from another project, I would like to remove that import 3 Answers