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 /
  • Help Room /
This question was closed Aug 27, 2016 at 07:16 PM by LiquidCGS for the following reason:

The question is answered, right answer was accepted

avatar image
0
Question by LiquidCGS · Aug 27, 2016 at 05:12 PM · iosunity5unity4.6input.mouseposition

Unity 5 Input.mousePosition NullReferenceException

Hello, I used this code in Unity 4 to rotate my player to the mouse position with a top view camera. But when i updated to Unity 5 it stopped working leaving me with a NullReferenceException error both in Javascript and C#

What would have to be modified so it works in Unity 5? Sorry for my bad English

   var speed = 4.0;
     
    function Update () {
    
        var playerPlane = new Plane(Vector3.up, transform.position);
     
    
        var ray = Camera.main.ScreenPointToRay (Input.mousePosition);
     
      
        var hitdist = 0.0;
    
        if (playerPlane.Raycast (ray, hitdist)) {
       
            var targetPoint = ray.GetPoint(hitdist);
     
         
            var targetRotation = Quaternion.LookRotation(targetPoint - transform.position);
     
            transform.rotation = Quaternion.Slerp(transform.rotation, targetRotation, speed * Time.deltaTime);
        }
    }

And here's the C# code

 using UnityEngine;
 using System.Collections;
 
 public class LookAtMouse : MonoBehaviour
 {
 
     // speed
     public float speed;
 
     void FixedUpdate()
     {
         Plane playerPlane = new Plane(Vector3.up, transform.position);
 
         Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
 
         float hitdist = 0.0f;
   
         if (playerPlane.Raycast(ray, out hitdist))
         {
             Vector3 targetPoint = ray.GetPoint(hitdist);
             Quaternion targetRotation = Quaternion.LookRotation(targetPoint - transform.position);.
             transform.rotation = Quaternion.Slerp(transform.rotation, targetRotation, speed * Time.deltaTime);
         }
     }
 }
Comment
Add comment · Show 4
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 DiegoSLTS · Aug 27, 2016 at 05:22 PM 0
Share

When you get an error you also get the line of the script that's throwing that error. Always share the line info.

avatar image LiquidCGS DiegoSLTS · Aug 27, 2016 at 05:29 PM 0
Share

Line 14 in C# Line 8 in js

avatar image DiegoSLTS LiquidCGS · Aug 27, 2016 at 05:37 PM 0
Share

The only thing that can be null there is Camera.main. This means that the camera doesn't have the "$$anonymous$$ainCamera" tag.

Show more comments

0 Replies

  • Sort: 

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

IOS BUILD errors 1 Answer

Unable to restore transactions in iOS 9.2.1 using openIAB plugin. 0 Answers

Online Maps on IOs 0 Answers

Unity can not access StreamingAssets on IOS 1 Answer

Unity 5 Each Platform Support 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