New animation events + OnScriptEvent outputs for ai_hint #269
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.
This PR adds the following new animation events:
AE_VSCRIPT_RUN
— Runs the specified VScript code on the animating entity. Handled on both the server and the client.AE_VSCRIPT_RUN_FILE
— Runs the specified VScript file on the animating entity. Handled on both the server and the client.AE_CL_STOP_PARTICLE_EFFECT
— Stops the specified particle effect. Useinstantly
to instantly remove all associated particles. From Alien Swarm SDK.AE_CL_ADD_PARTICLE_EFFECT_CP
— Adds the specified particle effect control point. From Alien Swarm SDK.This PR also hooks the animation event normally used for
scripted_sequence
into hint nodes so that it can fireOnScriptEvent
outputs on AI hints. This is especially useful for actbusies which may require the same kind of world interaction which scripted sequences are capable of, although this can be used for any hint type as long as the NPC playing the animation recognizes it as their current hint.This also fixes a crash which occurs when
AE_NPC_RESPONSE
is handled on a non-NPC or a NPC without an expresser.PR Checklist
develop
branch OR targets another branch with a specific goal in mind