Problem with Addforce and One way platforms OnCollisionEnter2D
I am making a 2D brawler with the damage and death similar to super smash bros. When I hit the enemy I use addforce to make him fly increasingly and bounce(also with addforce) off walls and ground....
View ArticleAdd Force teleporting the player
I want to push back my player when it collides with an object but when it collide with the object, it just teleporting back rather then pushing smoothly. I tweaked with values like Mass, Drag on...
View ArticleLaunch a player from a barrel like in dadish or donkey kong
Hi, I want to replicate a mechanic for a 2d platformer game I am making but I am facing some troubles. I have almost 1 week and cannot make this right so I decided to ask for help since I am new to...
View ArticleAddForce works on editor, not in build
i have two scripts, one for an AI and one for the player, both work fine on the editor but when i create a build everything works as intended except for the AddForce parts For Player void FixedUpdate()...
View Articlerigidbody.AddForce not working properly
I have a used rigidbody.AddForce for roll back when player hits an enemy. The hit direction is detected and according to that direction player is rolled back in corresponding X and Y axis. Y being...
View Articlevelociy? force? impulse?
hi guys, relative new to unity and have my first problem. followed a brackeys tutorial for powerups. so when my gold coin is picked up, my player changes his scale. everthing is working great except...
View Article[SOLVED] Rigidbody 2D AddForce only goes up, no other axis works
I'm trying to make a knockback system where when the player collides with an enemy they get knocked back, but no matter how I apply the force to the player, the rigidbody only ever goes up or doesn't...
View ArticleHow to make object move left and right smoothly
Hello, im trying to create a moving background. It should accelerate left, slowdown, then accelerate right, slowdown and repeat. I have been able to make the background move left, then slowdown, then...
View ArticleWhy is my player loosing force
In my game I have it so the player resets it's position, and it's velocity when it collides with an enemy or the goal, and when it passes a certain point on the z axis, but every time it resets my...
View Articleaddforce and timeScale problem
When I use the skill, the timeScale is 0.3 or 0.0, making the time slow and fast. However, as soon as the projectiles (arrows, bullets) are created, the timeScale is changed, or the enemy's next attack...
View Articleaddfore and timeScale
When I use the skill, the timeScale is 0.3 or 0.0, making the time slow and fast. However, as soon as the projectiles (arrows, bullets) are created, the timeScale is changed, or the enemy's next attack...
View Articleplease help me..... please
When I use the skill, the timeScale is 0.3 or 0.0, making the time slow and fast. However, as soon as the projectiles (arrows, bullets) are created, the timeScale is changed, or the enemy's next attack...
View ArticleHow to fix player knockback,How to add Knockback on enemy attack
I want the player to experience knockback when the enemy collides with the player. The Debug.log returns "check", butt the player does not move. There are no unity error's. Can anybody help me out?...
View ArticleRigidbody2D AddForce not working
I know this is a pretty popular question, since i have spend the last hour googling how to fix it. I can't get Addforce to work. I tried it in the game i am making, and it didn't work. Now i have tried...
View ArticleHello guys! I want to slow down the player's speed when i let up my left...
**Here is my code so far** private Rigidbody2D rB; private Vector2 mousePos; private float speed = -10.0f; private bool canSlow; // Start is called before the first frame update void Start() { rB =...
View Article2D Platformer - knockback hindered by player movement
Hey everyone, My problem is that when trying to knock the player back using Impulse AddForce, the player's input overbears the force added. ---------- To better explain the problem, imagine the player...
View ArticleMoving a rigidbody object using Addforce, without any overshoot
Hello, I'm trying to create an interaction system similar to the one in Amnesia the dark descent. In the game when you pick up an object it will follow your cursor around while still behaving like a...
View ArticleKeep Rigidbody velocity no matter the trajectory.
I have a function that fires a ball in a direction. It gets it's direction depending on the angle between the ball and the mouse position. The issue is that currently if the mouse is further away from...
View ArticleHow to move character relative to camera using AddForce
I get an error: Operator * cannot be applied to operands by type Vector3 and Vector3 `_rb.AddForce(movement * Camera.main.transform.forward * speed * Time.fixedDeltaTime, ForceMode.Impulse);`
View ArticleProblem with AddForce OnCollisionEnter
In my 2D game, I'm trying to knock back the player when he collides with a specific moving object using the code below. The problem is, once the player enters the collision with that object, the player...
View ArticleIs there a formula I can use to calculate force needed to achieve a certain...
Factoring in drag and mass of an object. I'm trying to move my rigidbody player at a certain velocity based on their movement input and a set movespeed. Like, I want the speed of the rigidbody to be...
View ArticleDifferent AddForce() Jump Results?
So, I'm using AddForce() to make my player jump. ![alt text][1] [1]: /storage/temp/204375-jumping.png grounded is set to true on OnCollisionEnter() For some reason, whenever I hit space, I get a...
View Articlerigidbody gets stuck on walls when addforce value is large
I want the object to move faster, so I increase the value in addforce but when the value is high, and if the player keeps the key pressed, the object later gets stuck against a wall during a jump one...
View ArticleAdding a force to a character controller
So, this is my first unity game, and I'm using a character controller for the player. But now I want to add a dash, and I can't find anything on how to make one with a character controller. Is there an...
View ArticleCalculate force necessary for 2D parabolic shot
Hi all, I'm trying to make a 2D game, where a ball will be launched from a starting position towards the mouse cursor, in a parabolic motion, with the cursor acting as the vertex of the shot. As of...
View ArticleAdd force in a particular direction
my code... public void ShootBubble() { bubble_obj_current.myRB.AddForce(myCannon.transform.forward * forceAmount , ForceMode.Impulse); } this is not moving the ball in the forward direction of the...
View ArticleStopping sky jumping with OnCollision problem
The code seems ok but there is a one problem. when I press spacebar while the player is in air then it falls, the player jumps on the floor even though I did not press the spacebar yet. Can someone...
View ArticleHow to add Rigidbody.AddExplosionForce to propel my player?
I am currently trying to make a movement focused game and I want the player to be able to drop bombs and the bombs should propel the player away from the bomb using Rigidbody.AddExplosionForce. But I'm...
View ArticleHow to stop a gameObject from pushing a clone of itself?
Hello all, I have a chicken with a box collider and a rigidbody and a script. Its duplicated many times in the scene (it will eventually become a prefab). I have some that can move only horizontally...
View ArticleUsing AddForce to reach certain height
Here's my case: I'm writing a rigidbody step system that causes my rigidbody to "hop" onto stairs. Kind of like character controller's stepOffset, but using small hops instead of clipping. How it...
View Article