You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2020. It is now read-only.
Class redirectors currently depend on the concrete type UClass to be used in order for redirectors to work (see FCoreRedirects:GetFlagsForTypeName). As USharp uses USharpClass, none of the C# defined classes can use redirectors. Structs might also be impacted as USharp uses a custom type USharpStruct.
Redirectors are pretty important for creating template projects in the same format that C++ template projects are made (redirectors are used to rename classes based on the project name). They are also generally important for renaming types.
The only real way of fixing this is engine source modifications.