1
NGUI 3 Support / Re: [3.6.4b] Javascript Fix not working
« on: July 24, 2014, 04:06:37 AM »
Error CS0246 which occurs about a 100 times all across NGUI scripts.
I made a quick and dirty script in C# to get the data I need from my JavaScript files (I also had to force Unity into compiling JavaScript files before C# files), and it does work well, but I am basically calling a few functions that I would otherwise not need (the functions that get me the required data I from my Js Scripts).
- Assets/Plugins/NGUI/Interaction/TypewriterEffect.cs(76,9): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- Assets/Plugins/NGUI/Interaction/UIKeyNavigation.cs(19,23): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- Assets/Plugins/NGUI/Interaction/UIGrid.cs(103,16): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- Assets/Plugins/NGUI/Interaction/TypewriterEffect.cs(76,9): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- (Filename: Assets/Plugins/NGUI/Interaction/TypewriterEffect.cs Line: 76)
- Assets/Plugins/NGUI/Interaction/UIKeyNavigation.cs(19,23): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- (Filename: Assets/Plugins/NGUI/Interaction/UIKeyNavigation.cs Line: 19)
- Assets/Plugins/NGUI/Interaction/UIGrid.cs(103,16): error CS0246: The type or namespace name `BetterList`1' could not be found. Are you missing a using directive or an assembly reference?
- (Filename: Assets/Plugins/NGUI/Interaction/UIGrid.cs Line: 103)
- ...
I made a quick and dirty script in C# to get the data I need from my JavaScript files (I also had to force Unity into compiling JavaScript files before C# files), and it does work well, but I am basically calling a few functions that I would otherwise not need (the functions that get me the required data I from my Js Scripts).
