Whenever I have the delete keyword in an event and try to use GMLive, it says that there is an error: "Expected a statement, got ident".
This code produces the error:
/// @desc Test Logic if(live_call()) return live_result; function test() constructor { testWord = "hello"; } testObject = new test(); delete testObject;
While this code does not:
/// @desc Test Logic if(live_call()) return live_result; function test() constructor { testWord = "hello"; } testObject = new test(); //delete testObject;
IDE Version: 2022.5.1.16
Runtime Version: 2022.5.2.13