-
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
Open
CCHyper
wants to merge
3
commits into
Vinifera-Developers:develop
Choose a base branch
from
CCHyper:feature/anim-spawn
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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. |
CCHyper
force-pushed
the
feature/anim-spawn
branch
2 times, most recently
from
March 25, 2022 01:05
16caecd
to
39d9627
Compare
CCHyper
force-pushed
the
develop
branch
3 times, most recently
from
March 28, 2022 15:34
c8c194d
to
e92b5e8
Compare
CCHyper
force-pushed
the
feature/anim-spawn
branch
from
March 28, 2022 18:01
39d9627
to
a5fe429
Compare
CCHyper
force-pushed
the
develop
branch
12 times, most recently
from
April 1, 2022 01:16
7ddd745
to
388e448
Compare
CCHyper
force-pushed
the
feature/anim-spawn
branch
4 times, most recently
from
April 4, 2022 21:36
a3a13b0
to
dc48d32
Compare
CCHyper
force-pushed
the
feature/anim-spawn
branch
from
August 13, 2022 10:39
dc48d32
to
a9202de
Compare
3 tasks
CCHyper
force-pushed
the
develop
branch
3 times, most recently
from
December 22, 2022 08:32
48cd2ea
to
b789478
Compare
CCHyper
force-pushed
the
develop
branch
3 times, most recently
from
February 24, 2023 11:01
d649039
to
5a6cb19
Compare
CCHyper
force-pushed
the
feature/anim-spawn
branch
3 times, most recently
from
February 25, 2023 18:27
23b7107
to
816e4f5
Compare
CCHyper
force-pushed
the
feature/anim-spawn
branch
from
April 3, 2023 14:29
816e4f5
to
f5041dd
Compare
ZivDero
force-pushed
the
develop
branch
2 times, most recently
from
September 26, 2024 13:00
65abfa3
to
5be9542
Compare
ZivDero
force-pushed
the
develop
branch
5 times, most recently
from
October 17, 2024 22:42
a307ea7
to
735e008
Compare
ZivDero
force-pushed
the
develop
branch
2 times, most recently
from
October 22, 2024 15:52
f40cd5a
to
ce12b49
Compare
ZivDero
force-pushed
the
feature/anim-spawn
branch
from
October 27, 2024 16:49
f5041dd
to
25c7cb5
Compare
ZivDero
force-pushed
the
feature/anim-spawn
branch
from
October 27, 2024 18:49
25c7cb5
to
7e497e1
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).