1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-19 01:29:49 +00:00

Fix issue where Cel's image setter was not being called

This commit is contained in:
Manolis Papadeas 2021-07-24 18:17:44 +03:00
parent 65051f0910
commit ef133f4f71

View file

@ -14,7 +14,7 @@ func _init(_image := Image.new(), _opacity := 1.0, _image_texture : ImageTexture
image_texture = _image_texture image_texture = _image_texture
else: else:
image_texture = ImageTexture.new() image_texture = ImageTexture.new()
image = _image self.image = _image
opacity = _opacity opacity = _opacity