Open friuns2 opened 2 years ago
No, that's one of the misimplemented part of this project.
TypeResolver only tries to find the typename with the first token. (in this case, it will be UnityEngine
not a Debug
)
Oh, forget about the answer abote.
FindType
seems fine.
I think the problem is here: https://github.com/pjc0247/SlowSharp/blob/73e7422ff2162b10139a82f92ce665df5cd5e110/Slowsharp/Runner/Runner.Expression.cs#L350-L474
which is really complicated. (so many cases to resolve call syntax)
then i use namespaces for now :)
for example this works fine using UnityEngine; Debug.Log("test");
but when i type UnityEngine.Debug.Log("test");
it says UnityEngine not found