Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions addons/post_processing/node/post_process.gd
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ func _check_shader_visibility(_name: String) -> bool:
push_error("#Undefined type Post Processing addon - verify it has been properly integrated.")
return false # bad!

func _enter_tree():

func _ready():
_add_canvas_layer_children("res://addons/post_processing/node/children/ChromaticAberration.tscn", "CA")
_add_canvas_layer_children("res://addons/post_processing/node/children/blur.tscn", "BL")
_add_canvas_layer_children("res://addons/post_processing/node/children/fish_eye.tscn", "FEYE")
Expand All @@ -155,7 +154,10 @@ func _enter_tree():
_add_canvas_layer_children("res://addons/post_processing/node/children/color_correction.tscn", "CC")
_add_canvas_layer_children("res://addons/post_processing/node/children/pixelate.tscn", "PXL")
_add_canvas_layer_children("res://addons/post_processing/node/children/palette.tscn", "PLT")


update_shaders()

func _enter_tree():
update_shaders()

func _add_canvas_layer_children(_path : String, _name: String) -> void:
Expand Down