Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
d34f0749bd |
BIN
fonts/m6x11.ttf
Normal file
BIN
fonts/m6x11.ttf
Normal file
Binary file not shown.
35
fonts/m6x11.ttf.import
Normal file
35
fonts/m6x11.ttf.import
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="font_data_dynamic"
|
||||||
|
type="FontFile"
|
||||||
|
uid="uid://dgdurp0mujjjv"
|
||||||
|
path="res://.godot/imported/m6x11.ttf-320f9d6ef26922ee8a43f6dace8debd0.fontdata"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://fonts/m6x11.ttf"
|
||||||
|
dest_files=["res://.godot/imported/m6x11.ttf-320f9d6ef26922ee8a43f6dace8debd0.fontdata"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
Rendering=null
|
||||||
|
antialiasing=1
|
||||||
|
generate_mipmaps=false
|
||||||
|
disable_embedded_bitmaps=true
|
||||||
|
multichannel_signed_distance_field=false
|
||||||
|
msdf_pixel_range=8
|
||||||
|
msdf_size=48
|
||||||
|
allow_system_fallback=true
|
||||||
|
force_autohinter=false
|
||||||
|
hinting=1
|
||||||
|
subpixel_positioning=4
|
||||||
|
keep_rounding_remainders=true
|
||||||
|
oversampling=0.0
|
||||||
|
Fallbacks=null
|
||||||
|
fallbacks=[]
|
||||||
|
Compress=null
|
||||||
|
compress=true
|
||||||
|
preload=[]
|
||||||
|
language_support={}
|
||||||
|
script_support={}
|
||||||
|
opentype_features={}
|
3
main.gd
3
main.gd
@ -1,6 +1,7 @@
|
|||||||
extends Node2D
|
extends Node2D
|
||||||
|
|
||||||
|
|
||||||
|
@onready var bubbles: HBoxContainer = $Bubbles
|
||||||
@onready var bubbles_back: TileMapLayer = $BubblesBack
|
@onready var bubbles_back: TileMapLayer = $BubblesBack
|
||||||
@onready var bubbles_interior: TileMapLayer = $BubblesInterior
|
@onready var bubbles_interior: TileMapLayer = $BubblesInterior
|
||||||
|
|
||||||
@ -17,10 +18,12 @@ func on_camera_became_active(camera: SuperCamera):
|
|||||||
|
|
||||||
|
|
||||||
func on_dialogue_started():
|
func on_dialogue_started():
|
||||||
|
bubbles.visible = true
|
||||||
bubbles_back.visible = true
|
bubbles_back.visible = true
|
||||||
bubbles_interior.visible = true
|
bubbles_interior.visible = true
|
||||||
|
|
||||||
func on_dialogue_ended():
|
func on_dialogue_ended():
|
||||||
|
bubbles.visible = false
|
||||||
bubbles_back.visible = false
|
bubbles_back.visible = false
|
||||||
bubbles_interior.visible = false
|
bubbles_interior.visible = false
|
||||||
|
|
||||||
|
@ -25,6 +25,10 @@ window/stretch/mode="viewport"
|
|||||||
|
|
||||||
project/assembly_name="ExampleProject"
|
project/assembly_name="ExampleProject"
|
||||||
|
|
||||||
|
[gui]
|
||||||
|
|
||||||
|
theme/custom_font="uid://dgdurp0mujjjv"
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|
||||||
move_right={
|
move_right={
|
||||||
|
Reference in New Issue
Block a user