mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-22 07:22:20 +00:00
- Created a json helper to streamline decoupling of hardcoded data - Removed non-existent VR bridge reference - News ticker files are no longer hardcoded to the game. - Removed hardcoded city and mayor names using Json helper
10 lines
286 B
GDScript
10 lines
286 B
GDScript
extends Node
|
|
|
|
const caseyverse_path = "res://json/ticker/extra_lore.json"
|
|
const news_outlets = "res://json/ticker/extra_lore.json"
|
|
const is_caseyverse_path = "res://is_caseyverse.txt"
|
|
|
|
func is_caseyverse():
|
|
var file = File.new()
|
|
if file.file_exists(is_caseyverse_path):
|
|
return true
|