mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
Merge branch 'master' into refactoring
This commit is contained in:
commit
b6dec2d500
|
@ -6,7 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [v0.7.1] - Unreleased
|
## [v0.7.1] - Unreleased
|
||||||
This update has been brought to you by the contributions of:
|
This update has been brought to you by the contributions of:
|
||||||
|
|
||||||
Igor Santarek (jegor377), rob-a-bolton, Kinwailo
|
Igor Santarek (jegor377), rob-a-bolton, Kinwailo
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -700,7 +700,6 @@ func animation_tags_changed(value : Array) -> void:
|
||||||
animation_timeline.first_frame = tag.from - 1
|
animation_timeline.first_frame = tag.from - 1
|
||||||
animation_timeline.last_frame = min(frames.size() - 1, tag.to - 1)
|
animation_timeline.last_frame = min(frames.size() - 1, tag.to - 1)
|
||||||
|
|
||||||
|
|
||||||
func update_hint_tooltips() -> void:
|
func update_hint_tooltips() -> void:
|
||||||
var root = get_tree().get_root()
|
var root = get_tree().get_root()
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@ func _ready() -> void:
|
||||||
|
|
||||||
func _draw() -> void:
|
func _draw() -> void:
|
||||||
var current_cels : Array = Global.frames[Global.current_frame].cels
|
var current_cels : Array = Global.frames[Global.current_frame].cels
|
||||||
|
|
||||||
if Global.onion_skinning:
|
if Global.onion_skinning:
|
||||||
onion_skinning()
|
onion_skinning()
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
class_name Drawer
|
class_name Drawer
|
||||||
|
|
||||||
class SimpleDrawer:
|
class SimpleDrawer:
|
||||||
|
|
Loading…
Reference in a new issue