minor improvements
This commit is contained in:
parent
c306aed43a
commit
9696dd2f11
4 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
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
|
||||
|
||||
Official video channel https://video.asgardius.company/c/asgardius_virtualx
|
||||
|
|
|
@ -136,7 +136,7 @@ text = "Overworld (Earth)"
|
|||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 25
|
||||
theme_override_styles/focus = SubResource("StyleBoxFlat_alctd")
|
||||
text = "The Zubmarine Zone"
|
||||
text = "The Submarine base"
|
||||
|
||||
[node name="Radioactive Desert" type="Button" parent="BoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
|
|
@ -9,6 +9,11 @@ const JUMP_VELOCITY = -400.0
|
|||
var vangle = 2
|
||||
var weakness = 2
|
||||
|
||||
|
||||
func _ready():
|
||||
var stimer = $Speed
|
||||
stimer.start(0.05)
|
||||
|
||||
func get_vector(angle):
|
||||
theta = angle + alpha
|
||||
return Vector2(cos(theta),sin(theta))
|
||||
|
|
|
@ -164,6 +164,7 @@ _data = {
|
|||
|
||||
[node name="Natasha" type="CharacterBody2D"]
|
||||
script = ExtResource("1_kycyt")
|
||||
alpha = 1.699
|
||||
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
texture = ExtResource("2_grplw")
|
||||
|
|
Loading…
Reference in a new issue