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 /
avatar image
0
Question by immodiumvash · May 28, 2017 at 01:42 PM · 2d-platformeraddforce2d-physicsplayer movementlag

why does my 2d platformer lags?

Hello Community, got this 2d plataformer, and the character is a vehicule, so Im using addforce to move it. i could swear it was working fine. but I dont know what happened now it lags when I press the horizontal axis keys. starts fine, after some seconds starts to lag untill it freezes, if I release the movement keys the game returns to be fine, but as soon as I press the either key (left or right) again it lags. If I just move by pressing the boost button the game is totaly fine. If I press the boost button when using the movement keys, the character just flys of the screen super fast like it had stored force in it. help please, I have modified the script several ways and couldnt fix it. this is the C# code:

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class PlayerStouss : MonoBehaviour {

 public float speed = 6f , maxVelocity = 8f;
 private Rigidbody2D myBody;
 private Animator anim;
 private float volLowRange = 0.5f;
 private float volHighRange = 1.0f;

 void Awake () {
     myBody = GetComponent<Rigidbody2D> ();
     anim = GetComponent<Animator> ();

 }

 // Use this for initialization
 void Start () {

 }
 
 // Update is called once per frame
 void Update () {
     
 }
 void FixedUpdate(){
     // this gets the imput of the player to jump
     PlayerMoveKeyboard ();{
     if (Input.GetButtonDown ("Jump"))
         Nitrous ();
         }
 }
     // this gets the imput for movement
 void PlayerMoveKeyboard(){
     float forceX = 0f;
     float vel = Mathf.Abs (myBody.velocity.x);

     float h = Input.GetAxisRaw ("Horizontal");
 
     if (h > 0) {
         if (vel < maxVelocity)
             forceX = speed;
         Vector3 temp = transform.localScale;
         temp.x = 1f;
             transform.localScale =temp;
                     
         anim.SetBool ("StoussMoving", true);
         SoundManagerScript.PlaySound("StoussMoving");
                 }
     else if (h < 0) {
         if (vel < maxVelocity)
             forceX = -speed;

         Vector3 temp = transform.localScale;
         temp.x = -1f;
             transform.localScale = temp;
         
         anim.SetBool ("StoussMoving", true);
         SoundManagerScript.PlaySound("StoussMoving");
     } 
     else
         anim.SetBool ("StoussMoving", false);
         myBody.AddForce (new Vector2 (forceX, 0));

     }

 void Nitrous () {
     
     SoundManagerScript.PlaySound("StoussBoost");

     if (transform.localScale.x > 0)
         myBody.AddForce (transform.right * 8, ForceMode2D.Impulse);
     
         //myBody.AddForce (transform.up * 1 , ForceMode2D.Impulse);
     

      if (transform.localScale.x < 0)
         myBody.AddForce (transform.right * -8, ForceMode2D.Impulse);
                 //myBody.AddForce (transform.up * 1 , ForceMode2D.Impulse);
 }
     

} thanks.

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 ismaelnascimento01 · May 28, 2017 at 01:47 PM

Check link: https://docs.unity3d.com/Manual/Profiler.html verify if is otimization this your 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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Using AddForce for horizontal movement doesn't quite work the way I want it to (2D) 1 Answer

Why did my character start jumping infinitely 0 Answers

why does my game lags? 0 Answers

How to add force based on surrounding colliders in 2D? 0 Answers

2d add force inconsistency 0 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