You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Add path option to ScriptLanguageExtension::_validate
This commit is contained in:
@@ -313,6 +313,9 @@ public:
|
||||
ERR_CONTINUE(!err.has("message"));
|
||||
|
||||
ScriptError serr;
|
||||
if (err.has("path")) {
|
||||
serr.path = err["path"];
|
||||
}
|
||||
serr.line = err["line"];
|
||||
serr.column = err["column"];
|
||||
serr.message = err["message"];
|
||||
|
||||
Reference in New Issue
Block a user