im using EasyTouch for the character controller
That is what i hv on my character
View attachment 114522
That is what i have on my wall
View attachment 114523
Character code
using UnityEngine;
using System.Collections;
public class MoveController : MonoBehaviour {
void OnEnable()
{
EasyJoystick.On_JoystickMove += OnJoystickMove;
EasyJoystick.On_JoystickMoveEnd += OnJoystickMoveEnd;
}
void OnDisable()
{
EasyJoystick.On_JoystickMove -= OnJoystickMove;...
Character going though walls
That is what i hv on my character
View attachment 114522
That is what i have on my wall
View attachment 114523
Character code
using UnityEngine;
using System.Collections;
public class MoveController : MonoBehaviour {
void OnEnable()
{
EasyJoystick.On_JoystickMove += OnJoystickMove;
EasyJoystick.On_JoystickMoveEnd += OnJoystickMoveEnd;
}
void OnDisable()
{
EasyJoystick.On_JoystickMove -= OnJoystickMove;...
Character going though walls