2D-Character-Controller icon indicating copy to clipboard operation
2D-Character-Controller copied to clipboard

Free 2D Character Controller for Unity.

Results 46 2D-Character-Controller issues
Sort by recently updated
recently updated
newest added

the character can now wall run. and it also has multiple jumps, which you can set the number of valid jumps to any number you want.

UnassignedReferenceException: The variable m_GroundCheck of CharacterController2D has not been assigned. You probably need to assign the m_GroundCheck variable of the CharacterController2D script in the inspector. UnityEngine.Transform.get_position () (at :0) CharacterController2D.FixedUpdate...

A typo in the `if` statement in line 67 may cause the `crouch` bool to always check `true`. This revision simply changes the `(!crouch)` in line 67 to the intended...

Hi, first thank for your tutorials. its very good. bout the character 2d movement, here is a problem I meet, I effectivly press up and down arrows or 'w' and...

Using my keyboard wouldn't cause the character to move, and even after deleting my version of the player movement script and copy-pasting the script of someone who did it 1:1...

The player goes into the running animation so I believe that the player movement script works, however they don't actually move just run on the spot. The script worked on...

It tells me to fix compile errors some examples of these errors are Assets\CharacterController2d.cs(11,37): warning CS0649: Field 'CharacterController2D.m_WhatIsGround' is never assigned to, and will always have its default value, Assets\CharacterController2d.cs(13,37):...

Ah... I Don't know how to program very well so...

When ever I crouch under a platform then release this happens: https://i.imgur.com/jgwCai4.png btw the other sprite is there on purpose `using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerMovement :...