root/src/scene.gd

1
2
3
4
5
6
7
8
9
10
11
12
extends Spatial

enum SCENE_TYPE {
	normal = 1
	cylinder = 2
}

var scene_type = SCENE_TYPE.normal
var pfriend = null

func _ready():
	pass # Replace with function body.