mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
Started work on the GSAL and created an Kanban for this module of the toolset
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
extends Node
|
||||
|
||||
# Step 1 Define Dice Types
|
||||
var diceTypes = [6]
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
@ -0,0 +1,18 @@
|
||||
extends Node
|
||||
|
||||
|
||||
var diceTypes = [20,12,10,100,8,6,4]
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
Reference in New Issue
Block a user