Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by adam_melhem · Oct 30, 2012 at 11:51 AM · camerachangetargetaddsmooth follow

how can i make the main cam smooth follow a new prefab that i add after the game start .

how can i make the main cam smooth follow a new prefab that i add after the game start .

i have an aircraft that the cam pointed to , and i want the cam to follow the rocket when i launch rocket from the aircraft .

i need to enter the "smooth follow" script that attached to the main cam , and changing the the transform target var to the value of the new transform (rocket) that i add to the game later.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

5 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by deltamish · Nov 01, 2012 at 01:00 PM

Hi,Create a camera add Smooth follow script to it

Add this script to the rocket

 var camera:Camera;
 var tgt:Transform;//use this in case the rocket is child of another object,assign rocket to tgt
 
 function Start(){
 camera.GetComponent(SmoothFollow).target = transform;//tgt if rocket is an child of another object
 }

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by adrenak · Oct 31, 2012 at 05:52 PM

This is a simple solution :

 function Start(){
 
     var cam : GameObject = GameObject.Find("Main Camera");
     cam.GetComponent(SmoothFollow).target = transform;
 
 }

Have the above lines in a new script, and add that script to the rocket prefab. The above script assumes that the camera gameobject is named "Main Camera", which you can change.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image adam_melhem · Nov 01, 2012 at 05:46 AM 0
Share

thank you , i was very helpfully .

i do it in the other way ins$$anonymous$$d

(Camera.mainCamera.GetComponent(SmoothFollow).target = new_player; , your main idea where very helpful even that it didn't works in my code as it is .

avatar image
0

Answer by adam_melhem · Oct 31, 2012 at 09:30 PM

THANK YOU MY FRIEND , I HAVE TRY THIS , IT DIDNT WORKS , I THINK THE REASON IS THAT I AM USING NETWORK .

THE MAIN CAM DOESINT BELONG TO THE NETWORK , BUT THE ROCKET BELONG TO THE NETWORK. WHEN THE GAME START ITS START WITH THE MAIN CAMERA BUT AFTER I RUN THE NETWORK SERVER EVERY THING WORKS GREAT BUT THE MAIN CAMERA DOESINT FOLLOW THE NEW NETWORK ROCKET THAT I CREAT AFTER STARTING THE SERVER .!!!!

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by adam_melhem · Oct 31, 2012 at 09:31 PM

THANK YOU MY FRIEND , I HAVE TRY THIS , IT DIDNT WORKS , I THINK THE REASON IS THAT I AM USING NETWORK .

THE MAIN CAM DOESINT BELONG TO THE NETWORK , BUT THE ROCKET BELONG TO THE NETWORK. WHEN THE GAME START ITS START WITH THE MAIN CAMERA BUT AFTER I RUN THE NETWORK SERVER EVERY THING WORKS GREAT BUT THE MAIN CAMERA DOESINT FOLLOW THE NEW NETWORK ROCKET THAT I CREAT AFTER STARTING THE SERVER .!!!!

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by adam_melhem · Oct 31, 2012 at 09:30 PM

didnt work!!! its network game!!. the rocket will be created in the network game .

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

11 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to change Target of camera from Standard Assets 1 Answer

Changing Target Depending On Car Selected 1 Answer

Changing camera target of CarSmoothFollow ( Js to c#) 0 Answers

Switch Smooth Follow between targets smoothly 1 Answer

Cycle through an array? Have Camera Follow different Targets. 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges