First work on dialogic, resized guild, and started implementing portraits.

This commit is contained in:
2025-08-14 10:26:24 -04:00
parent 95a7db036b
commit 3aeb3d44e6
959 changed files with 47688 additions and 46 deletions

View File

@@ -0,0 +1,44 @@
@tool
class_name DialogicEndTimelineEvent
extends DialogicEvent
## Event that ends a timeline (even if more events come after).
#region EXECUTE
################################################################################
func _execute() -> void:
dialogic.end_timeline()
#endregion
#region INITIALIZE
################################################################################
func _init() -> void:
event_name = "End"
set_default_color('Color4')
event_category = "Flow"
event_sorting_index = 10
#endregion
#region SAVING/LOADING
################################################################################
func get_shortcode() -> String:
return "end_timeline"
#endregion
#region EDITOR REPRESENTATION
################################################################################
func build_event_editor() -> void:
add_header_label('End Timeline')
#endregion

View File

@@ -0,0 +1 @@
uid://cyx6u26dpvrxb

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cstw2y41yacgc"
path="res://.godot/imported/icon.png-8e345f81e023043fdbb4f75b1b0e9bb0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://addons/dialogic/Modules/End/icon.png"
dest_files=["res://.godot/imported/icon.png-8e345f81e023043fdbb4f75b1b0e9bb0.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View File

@@ -0,0 +1,6 @@
@tool
extends DialogicIndexer
func _get_events() -> Array:
return [this_folder.path_join('event_end.gd')]

View File

@@ -0,0 +1 @@
uid://vqr1nlescbgq