Reworked the AI Objectives
This commit is contained in:
parent
27964084ff
commit
a6c9909f26
8 changed files with 31 additions and 11 deletions
5
scripts/maps/objectives/hungry.gd
Normal file
5
scripts/maps/objectives/hungry.gd
Normal file
|
@ -0,0 +1,5 @@
|
|||
class_name Hungry
|
||||
extends Objective
|
||||
|
||||
func _ready() -> void:
|
||||
displayed = "Hungry"
|
|
@ -1,7 +1,8 @@
|
|||
## SPDX-License-Identifier: GPL-3.0-or-later
|
||||
## Copyright (c) 2024 interstellardevelopment.org
|
||||
|
||||
class_name Rest
|
||||
class_name Objective
|
||||
extends Node3D
|
||||
|
||||
var occupied: bool = false
|
||||
var displayed: String
|
Loading…
Add table
Add a link
Reference in a new issue