Skip to content

Commit

Permalink
Fix issue where "Set Animation Frame" event wouldn't allow frame valu…
Browse files Browse the repository at this point in the history
…es greater than 25
  • Loading branch information
chrismaltby committed Nov 7, 2024
1 parent ad88472 commit 1810fcb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix issue preventing engine plugins stored in subfolders from being included in project
- Fix bottom margins when using GB Printer [@untoxa](https://github.com/untoxa)
- Fix variable uses list which wasn't including variable "0"'s uses in text fields
- Fix issue where "Set Animation Frame" event wouldn't allow frame values greater than 25

## [4.1.3] - 2024-09-16

Expand Down
1 change: 0 additions & 1 deletion src/lib/events/eventActorSetFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const fields = [
description: l10n("FIELD_ANIMATION_FRAME_DESC"),
type: "value",
min: 0,
max: 25,
defaultValue: {
type: "number",
value: 0,
Expand Down

0 comments on commit 1810fcb

Please sign in to comment.