Skip to content

v1.2.2

Latest
Compare
Choose a tag to compare
@Delsin-Yu Delsin-Yu released this 29 Mar 18:37
  • Added Extra Runtime Checks to Prevent Package Consumers from Calling GDTask APIs under Editor Codes.
public partial class EditorHintCheck : Node
{
	[ModuleInitializer]
	public static void Init()
	{
		// Now throws InvalidOperationException instead of crashing the editor
		GDTask.Delay(TimeSpan.Zero);
	}
}
  • Implement from Up-Stream: Remove unnecessary AwakeMonitor/EnterTreeMonitor.