We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537b04c commit 797f8d1Copy full SHA for 797f8d1
addons/netfox/rollback/network-rollback.gd
@@ -282,10 +282,6 @@ func get_latest_input_tick(root_node: Node) -> int:
282
return _input_submissions[root_node]
283
return -1
284
285
-## Get all root nodes that have submitted input
286
-func get_input_submissions() -> Dictionary:
287
- return _input_submissions
288
-
289
## Check if a node has submitted input for a specific tick (or later)
290
func has_input_for_tick(root_node: Node, tick: int) -> bool:
291
return _input_submissions.has(root_node) and _input_submissions[root_node] >= tick
0 commit comments