otherworldly_simulation/scene/class/e_interaction_item.gd
2024-11-01 23:23:07 +08:00

23 lines
263 B
GDScript

extends Area2D
##地图中使用E键进行交互的基类
class_name EInteractionItem
##交互使用的函数
func E_pressed():
pass
##高光反应抽象函数
func _on_highlight():
pass
##去除高光抽象函数
func _exit_highlight():
pass