You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
483 B
GDScript

extends Node3D
2 years ago
#==scene==
var scene_player = load("res://scene/character/player.tscn")
var scene_monster = load("res://scene/character/monster.tscn")
2 years ago
#==material==
var material_character = load("res://render/material/character.tres")
#==config==
#character
var cfg_character_player = load("res://config/character/hero01.tres")
var cfg_character_monster_test = load("res://config/character/monster02.tres")
#attack
var cfg_attack_rebound = load("res://config/attack/rebound.tres")