minor improvements

This commit is contained in:
Page Asgardius 2024-02-01 20:15:29 -07:00
parent c306aed43a
commit 9696dd2f11
4 changed files with 9 additions and 1 deletions

View file

@ -5,3 +5,5 @@
An Action Role Playing Game inspired by TLOZ A Link to the Past, Touhou Project, Megaman X, among others. The only Open Source Genshin Killer. This game is made using Godot Engine An Action Role Playing Game inspired by TLOZ A Link to the Past, Touhou Project, Megaman X, among others. The only Open Source Genshin Killer. This game is made using Godot Engine
At the moment this game is only a proof of concept. If you want to help send me an email to asgardius@asgardius.company At the moment this game is only a proof of concept. If you want to help send me an email to asgardius@asgardius.company
You can find game documentation at https://cloud.asgardius.company/s/3tPKHsMznzMjzEc?path=%2Fgame%20documentation%2FMidori%20in%20the%20Magic%20School You can find game documentation at https://cloud.asgardius.company/s/3tPKHsMznzMjzEc?path=%2Fgame%20documentation%2FMidori%20in%20the%20Magic%20School
Official video channel https://video.asgardius.company/c/asgardius_virtualx

View file

@ -136,7 +136,7 @@ text = "Overworld (Earth)"
layout_mode = 2 layout_mode = 2
theme_override_font_sizes/font_size = 25 theme_override_font_sizes/font_size = 25
theme_override_styles/focus = SubResource("StyleBoxFlat_alctd") theme_override_styles/focus = SubResource("StyleBoxFlat_alctd")
text = "The Zubmarine Zone" text = "The Submarine base"
[node name="Radioactive Desert" type="Button" parent="BoxContainer/VBoxContainer"] [node name="Radioactive Desert" type="Button" parent="BoxContainer/VBoxContainer"]
layout_mode = 2 layout_mode = 2

View file

@ -9,6 +9,11 @@ const JUMP_VELOCITY = -400.0
var vangle = 2 var vangle = 2
var weakness = 2 var weakness = 2
func _ready():
var stimer = $Speed
stimer.start(0.05)
func get_vector(angle): func get_vector(angle):
theta = angle + alpha theta = angle + alpha
return Vector2(cos(theta),sin(theta)) return Vector2(cos(theta),sin(theta))

View file

@ -164,6 +164,7 @@ _data = {
[node name="Natasha" type="CharacterBody2D"] [node name="Natasha" type="CharacterBody2D"]
script = ExtResource("1_kycyt") script = ExtResource("1_kycyt")
alpha = 1.699
[node name="Sprite2D" type="Sprite2D" parent="."] [node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("2_grplw") texture = ExtResource("2_grplw")