-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implements feature for animations to spawn additional animations. #753
Merged
ZivDero
merged 11 commits into
Vinifera-Developers:develop
from
CCHyper:feature/anim-spawn
Nov 28, 2024
Merged
Implements feature for animations to spawn additional animations. #753
ZivDero
merged 11 commits into
Vinifera-Developers:develop
from
CCHyper:feature/anim-spawn
Nov 28, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This comment is automatically generated by Nightly.link and allows non-registered users to get download the artifacts for this pull request. These links are also updated when the pull request is pushed to. |
16caecd
to
39d9627
Compare
c8c194d
to
e92b5e8
Compare
39d9627
to
a5fe429
Compare
7ddd745
to
388e448
Compare
a3a13b0
to
dc48d32
Compare
dc48d32
to
a9202de
Compare
3 tasks
65abfa3
to
5be9542
Compare
a307ea7
to
735e008
Compare
f40cd5a
to
ce12b49
Compare
25c7cb5
to
7e497e1
Compare
c3e7349
to
0a8e674
Compare
7e497e1
to
55937ca
Compare
d4fd6e5
to
f190f21
Compare
f190f21
to
3222cac
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #752, Closes #883
This pull request implements a new system for AnimTypes, allowing them to spawn additional animations at the start, middle and end of their sequence stages. All animations spawned will be from the center coordinate of the animation spawning these additional animations.
NOTE: The
<stage>
keyword used below can be replaced with;Start
,Middle
,End
.[AnimType]
<stage>Anims=<comma delimited list of AnimTypes>
List of animations to spawn at the designated stage of the animation sequence. Defaults to
<none>
.<stage>AnimsMinimum=<comma delimited list of integers>
The minimum number of animations that can spawn when choosing the random amount for each of the respective entries on the animations list. This list must have the same number of entries as the animations list. Defaults to
1
for each entry.<stage>AnimsMaximum=<comma delimited list of integers>
The maximum number of animations that can spawn when choosing the random amount for each of the respective entries on the animations list. This list must have the same number of entries as the animations list. Defaults to
1
for each entry.<stage>AnimsCount=<comma delimited list of integers>
Number of animations to spawn for each of the respective entries on the animations list. This list must have the same number of entries as the animations list. Defaults to
1
for each entry, and takes priority over theMinimum
andMaximum
entries.In addition to this new system, a new key for setting the logical middle frame (the frame in which the craters etc, are spawned) can now be set.
MiddleFrame=<integer>
The frame number in which the animation system will spawn various logics (e.g. craters, scorch marks, fires). Defaults to auto-detect based on the largest frame of the shape file. A special value of
-1
can be used to tell the animation system to use the exact middle frame of the shape file (shape file has 30 frames, frame 15 will be used).