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 brightskull · Dec 09, 2014 at 06:45 PM · errorperformanceoptimizationprofiler

Scene Lag when first running a certain script, but then returns to normal performance afterwards?

I have a script for my player's input. The profiler is reading that the Update method for that script is using too much CPU and lags the scene quite alot when it is first used, however after it has run the fist time, the performance returns back to the normal desired speed. after running the script the first time there is no lag when running it again. I am a bit confused and would like to know how I can optimize this script to run at the normal speed the first time when the scene is loaded.

Below Is the update method for that script. Please comment if you have any suggestions or experience with this sort of thing. Thank you.

 void Update() 
         {
             float scrollWheel = Input.GetAxis("Mouse ScrollWheel");
             camController.Zoom(scrollWheel);
             bool Grounded = player.checkGroundcontact();
     
             if(!isArmDragging && HandlePinchToZoom())
             {
                 isCameraDragging = false;
                 return;
             }
     
             if(!Grounded)
             {
                 camController.MoveTo(player.CamTarget.transform.position);
             }
             if (Input.GetMouseButtonDown(0) && Grounded) 
             {
                 camController.StorePosition();
     
                 Vector3 mouseScreenPos = Input.mousePosition;
                 Vector3 mouseWorldPos = Camera.main.ScreenToWorldPoint(mouseScreenPos);
                 Collider2D hit = Physics2D.OverlapPoint(mouseWorldPos, LayerMask.GetMask("Arm Click"));
     
                 if (hit != null)
                 {
                         isArmDragging = true;
                         mouseScreenPos = Camera.main.WorldToScreenPoint(player.flingOffsetStartTransform.position);
                         mouseScreenPos.z = 0;
                 } 
                 else 
                 {
                     isCameraDragging = true;
                 }
     
                 mouseDragStart = mouseScreenPos; // in screen space
             } 
     
             else if (Input.GetMouseButton(0) && Grounded) 
             {
                 if(isArmDragging) 
                 {
                     Vector3 delta = ScreenToWorldDelta(Input.mousePosition, mouseDragStart);
                     delta = ConstrainDelta(delta);
                     delta = TransformDelta(delta);
                     if (aimingTracker != null) 
                     {
                         aimingTracker.MouseDragged(delta);
                     }
     
                     player.UpdateAiming(delta, GetNormalizedDelta(delta));
                     player.graphics.Stretchy.SetActive(true);
                     player.graphics.Transitions.SetActive(false);
                 }
                 else if(isCameraDragging) 
                 {
                     Vector3 delta = ScreenToWorldDelta(Input.mousePosition, mouseDragStart);
                     if(invertCamera)
                     {
                         camController.UpdatePosition(delta);
                     }
                     else
                     {
                         camController.UpdatePosition(-delta);
                     }
                 }
     
             } 
     
             else if (Input.GetMouseButtonUp(0) && Grounded) 
             {
                 if(isArmDragging) 
                 {
                     Vector3 delta = ScreenToWorldDelta(Input.mousePosition, mouseDragStart);
                     delta = ConstrainDelta(delta);
                     delta = TransformDelta(delta);
     
                     if(aimingTracker != null) 
                     {
                         aimingTracker.EraseDots();
                     }
                     if(player != null) 
                     {
                         player.graphics.Stretchy.SetActive(false);
                         player.graphics.Transitions.SetActive(true);
                         player.graphics.Prelaunch(delta);
                         player.ApplyForce(delta);
                         player.graphics.Ignite();
                     }
                 }
                 else if (isCameraDragging)
                 {
                     camController.EndDrag();
                 }
                 isArmDragging = false;
                 isCameraDragging = false;
                 mouseDragStart = new Vector3(0,0,0);
             }
         }

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 Owen-Reynolds · Dec 10, 2014 at 06:42 AM

Comment stuff out until it speeds up? Normal method is to start by commenting about half -- like an entire else or something.

But it might not really be Update's fault. Might just be "yer a big fella, let me unload a bunch of old Start and Awake functions, to make room."

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 do I get my game to run faster? 4 Answers

Animator.Update has high CPU usage 2 Answers

Profiler: Crowdmanager.update? 1 Answer

UI Text Optimization? Updating Geometry seems to be slow 0 Answers

Is there a Per-Mesh-Profiler somewhere? 2 Answers


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