1
0
Fork 0
mirror of https://github.com/tonytins/retro8.git synced 2025-06-25 08:54:44 -04:00

Initial commit

This commit is contained in:
Tony Bark 2021-03-08 14:49:10 -05:00
commit 8a169c7b36
11 changed files with 742 additions and 0 deletions

12
scenes/Game.tscn Normal file
View file

@ -0,0 +1,12 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scenes/Renderer.tscn" type="PackedScene" id=1]
[node name="Game" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Renderer" parent="." instance=ExtResource( 1 )]

8
scenes/Home.tscn Normal file
View file

@ -0,0 +1,8 @@
[gd_scene format=2]
[node name="Home" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": true
}

14
scenes/Renderer.tscn Normal file
View file

@ -0,0 +1,14 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/Chip8.gd" type="Script" id=1]
[node name="Renderer" type="ColorRect"]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 1 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]