Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 RharryR · Sep 28, 2015 at 06:37 AM · camera

Unity2D newbie camera issues.

Hey. I just recently started using unity2D to make platformer games. I decided to make a test game so i could learn. I created a script to make the camera follow the player. Here it is below.

 using UnityEngine;
 using System.Collections;
 
 public class CameraController : MonoBehaviour {
 
     public PlayerController player;
     public bool isFollowing;
     public float xOffset;
     public float yOffset;
 
     // Use this for initialization
     void Start () {
         player = FindObjectOfType<PlayerController>();
         isFollowing = true;
     
     }
     
     // Update is called once per frame
     void Update () {
         if (isFollowing)
         {
             transform.position = new Vector3(player.transform.position.x + xOffset, player.transform.position.y + yOffset, player.transform.position.z);
 
         }
 
 
     
     }
 }

I attached this script to the camera. When i tested the game the camera clearly followed the player in the scene view but the game view was blank, except for the UI. Here is a screenshotalt text

The camera appears to have the exact same position as the player in the scene view but it is always appearing as 0-0-0 in the inspector. Help anyone?

asse.png (185.6 kB)
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Cherno · Sep 28, 2015 at 11:17 AM

As you can see on your own screenshot, the camera is a child of the player and it's Transform.position values are all 0; Since it it a child, these are local position values. That means it is sitting at the exact same position the player object is at. That in turn explains why there is nothing for it to see (it just stares into empty space). What you need to do is to either get rid of the whole following functionality (Since the cam is already a achild of the player, it will automatically follow it; in this case, just set the camera's transform and roation values so it is away from the player and looking at it). If you want to keep the following functionality, un-child the camera from the player.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

How to make camera position relative to a specific target. 1 Answer

movement disable when camera changes view 1 Answer

Lerping the camera giving me an error 1 Answer

Change 3D Camera to 2D 0 Answers

Runescape style window? 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