disclaimer message
This commit is contained in:
parent
1896c500bc
commit
c5a127e8dd
19 changed files with 311 additions and 54 deletions
27
levels/bottomhud.tscn
Normal file
27
levels/bottomhud.tscn
Normal file
|
@ -0,0 +1,27 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://wovn8m050haq"]
|
||||
|
||||
[ext_resource type="Script" path="res://fps.gd" id="1_15gcj"]
|
||||
|
||||
[node name="Bottomhud" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
|
||||
[node name="fps" type="Label" parent="."]
|
||||
layout_mode = 0
|
||||
offset_left = 5.0
|
||||
offset_top = 697.0
|
||||
offset_right = 45.0
|
||||
offset_bottom = 720.0
|
||||
script = ExtResource("1_15gcj")
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
layout_mode = 0
|
||||
offset_left = 1191.0
|
||||
offset_top = 691.0
|
||||
offset_right = 1271.0
|
||||
offset_bottom = 714.0
|
||||
text = "R0.0.0-dev"
|
|
@ -37,7 +37,7 @@ func _process(delta):
|
|||
bgsound.play(0)
|
||||
else:
|
||||
_complete()
|
||||
elif bgsound.has_stream_playback():
|
||||
elif bgsound.get_playback_position() > 10:
|
||||
playstart = true
|
||||
#pass
|
||||
|
||||
|
@ -51,6 +51,6 @@ func _complete():
|
|||
|
||||
func _input(event):
|
||||
# Mouse in viewport coordinates.
|
||||
if event is InputEventMouseButton || Input.is_joy_button_pressed(0,JOY_BUTTON_A) || Input.is_key_pressed(KEY_ENTER):
|
||||
if bgsound.get_playback_position() > 1 && event is InputEventMouseButton || Input.is_joy_button_pressed(0,JOY_BUTTON_B) || Input.is_key_pressed(KEY_X) || Input.is_key_pressed(KEY_ENTER):
|
||||
#print("Mouse Click/Unclick at: ", event.position)
|
||||
_complete()
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
[ext_resource type="Script" path="res://levels/credits.gd" id="1_y6orl"]
|
||||
[ext_resource type="VideoStream" path="res://backgounds/nebula_-_6044 (720p).ogv" id="2_0cref"]
|
||||
[ext_resource type="Script" path="res://nebula.gd" id="3_ffw0g"]
|
||||
[ext_resource type="PackedScene" uid="uid://wovn8m050haq" path="res://levels/bottomhud.tscn" id="5_yvope"]
|
||||
[ext_resource type="Script" path="res://levels/roll.gd" id="6_3q8sp"]
|
||||
[ext_resource type="Script" path="res://fps.gd" id="7_jok2t"]
|
||||
|
||||
[node name="credits" type="Node2D"]
|
||||
script = ExtResource("1_y6orl")
|
||||
|
@ -56,6 +56,14 @@ Title screen
|
|||
RELOADED Theme
|
||||
RELOADED
|
||||
|
||||
Settings and Stores
|
||||
Jellies in the Sea
|
||||
vince kaichan
|
||||
|
||||
Testrooms
|
||||
Get A Brain Morans
|
||||
Fearofdark
|
||||
|
||||
Friendly challenge
|
||||
Oskars Skarmslackare
|
||||
MrGamer
|
||||
|
@ -397,12 +405,23 @@ Source code hosted at https://git.asgardius.company/asgardius/midori-school
|
|||
|
||||
You can listen my radio station at https://asteroid.asgardius.company/public/r3
|
||||
|
||||
Special Thanks for Unity Technologies for make me choosing Godot
|
||||
Special thanks
|
||||
|
||||
Unity Technologies
|
||||
For make me choosing Godot
|
||||
Godot does what Unitydnt
|
||||
|
||||
I'm looking for developers, artists and japanese voice actors who want to help on this videogame
|
||||
from Asgardius Virtualx series and the next Genshin Killer
|
||||
CAPCOM
|
||||
For making great games in the past
|
||||
|
||||
ZUN
|
||||
For let me know that a single person can create a great game
|
||||
|
||||
Hoyoverse
|
||||
For let me know that fireworks can make a fun game
|
||||
|
||||
SNK
|
||||
For let me know that a Heavy Machine Gun can be turned into a good stage boss
|
||||
|
||||
Contact info
|
||||
|
||||
|
@ -424,9 +443,6 @@ You can reuse assets for non-commercial purposes only"
|
|||
horizontal_alignment = 1
|
||||
script = ExtResource("6_3q8sp")
|
||||
|
||||
[node name="fps" type="Label" parent="."]
|
||||
offset_right = 40.0
|
||||
offset_bottom = 23.0
|
||||
script = ExtResource("7_jok2t")
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("5_yvope")]
|
||||
|
||||
[connection signal="finished" from="nebula" to="nebula" method="_on_finished"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue