Markers can now be loaded and unloaded in the editor. Currently not fully implemented, but getting there.

This commit is contained in:
Jamie Greunbaum
2024-05-19 18:12:42 -04:00
parent a5bd6cfd72
commit 2a57cd544d
7 changed files with 141 additions and 36 deletions
+16
View File
@@ -0,0 +1,16 @@
class_name BugbotBugData
extends Resource
var id : int = -1
var title : String
var body : String
var component : String
var map_name : String
var marker_location : String
var platform : String
var operating_system : String
var is_open : bool
var severity : String
var status : String
var resolution : String
var duplicate_of : int = -1
@@ -0,0 +1,6 @@
class_name BugbotErrorData
extends Resource
var code : int = -1
var message : String
var url : String