24 lines
638 B
GDScript
24 lines
638 B
GDScript
extends Node
|
|
|
|
var SpawnableProps = [
|
|
{
|
|
"name": "90s Showroom Chair",
|
|
"path": "res://Scenes/Props/Physics/ShowroomChair.tscn",
|
|
"icon": "res://UI/PropIcons/ShowroomChair.png"
|
|
},
|
|
{
|
|
"name": "90s Showroom Chair (Red)",
|
|
"path": "res://Scenes/Props/Physics/ShowroomChairRed.tscn",
|
|
"icon": "res://UI/PropIcons/ShowroomChairRed.png"
|
|
},
|
|
{
|
|
"name": "2000s Showroom Chair",
|
|
"path": "res://Scenes/Props/Physics/2000sShowroomChair.tscn",
|
|
"icon": "res://UI/PropIcons/2000sShowroomChair.png"
|
|
},
|
|
{
|
|
"name": "Bouncy Ball",
|
|
"path": "res://Scenes/Props/Physics/BouncyBall.tscn",
|
|
"icon": "res://UI/PropIcons/BouncyBall.png"
|
|
},
|
|
]
|