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

old code I guess... here are some problems I couldn't figure out

Open Lukemanluke opened this issue 3 years ago • 1 comments

Assets\scripts\CharacterController2D.cs(27,9): error CS0246: The type or namespace name 'UnityEvent' could not be found (are you missing a using directive or an assembly reference?)

Assets\scripts\CharacterController2D.cs(30,27): error CS0246: The type or namespace name 'UnityEvent<>' could not be found (are you missing a using directive or an assembly reference?)

Lukemanluke avatar Aug 05 '20 21:08 Lukemanluke

Assets\scripts\CharacterController2D.cs(27,9): error CS0246: The type or namespace name 'UnityEvent' could not be found (are you missing a using directive or an assembly reference?)

Assets\scripts\CharacterController2D.cs(30,27): error CS0246: The type or namespace name 'UnityEvent<>' could not be found (are you missing a using directive or an assembly reference?)

Include "UnityEngine events" in header of your script.

using UnityEngine;
using UnityEngine.Events;

jufryananta avatar Aug 28 '20 10:08 jufryananta