mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-11 21:43:44 +00:00
12 lines
435 B
GDScript
12 lines
435 B
GDScript
extends Node
|
|
|
|
# Autoload: cross-scene settings handed from the main menu to game modes.
|
|
# Defaults keep direct-scene runs (F6), training, and headless runs unchanged.
|
|
|
|
# Opponent policy chosen in the main menu; empty = use the mode's own export.
|
|
var selected_bot_path: String = ""
|
|
|
|
# Spectate (bot vs bot) policies chosen in the main menu; empty = mode export.
|
|
var spectate_bot_a_path: String = ""
|
|
var spectate_bot_b_path: String = ""
|