Choreography Implementation: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
 
(26 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{stub}}
#redirect [[Choreography creation/Implementation]]
==Introduction==
This page is meant to illustrate practical techniques used to implement Choreography scenes into Source. The focus here is on vcd's and how to use them effectively. However, the relevant techniques often reach outside of faceposer, and into hammer, XSI, etc.
 
(The following is a suggested outline. It will change as it gets fleshed out.)
 
==Why use VCD's?==
*Power. VCD's can choreograph a wide range of elements together very precisely -- audio, FX, Actor Direction (blocking), animation, and scene/map logic.
*Fast iteration. You don't need to recompile the map to see vcd changes.  Use Scene_Flush. Especially relevant in tweaking the timing of events.
 
==How do VCD's play in Source?==
*In a map via the LCS entity
*Through the Response System
**Lead/follow behaviour example (post aftermath?)
 
==Scene approach and planning==
*What elements are involved?
*What actors are involved?
*How is the player involved?
*How is the scene incorporated into the map logic?
**Conditions for scene to start
**Conditions for pausing / resuming or interrupting the scene
**Benefit of driving as much as possible from the VCD's
***The all-important Fire Trigger event
==Blocking out a scene==
*Info_target entity
*Using DebugText
*Adding new dialog entries
*Getting scene logic functional
 
==Using !Target#==
*For Actor names
*For event Targets
 
==Pausing / Resuming a Scene==
*Using a Global Pause event
*Using a Fire Trigger event to pause itself indefinitely
*The behaviour of paused VCD's
**Events remain active (lookAt, faceTo, moveTo, etc)
**Pausing in the "loop" section of a Gesture event
*Setting up Nags
 
==Controlling your Actors==
*NPC input, Start Scripting
*NPC flag, Use Alternate Collisions
*Using non-conventional Actors
**Generic_actor entity
**Radio example
**Lamarr
 
==Player Participation in the Scene==
*Using Triggers, Look Triggers, and AI_Script_Conditions
**Eli's lab example
*Taking control of the player
**Point_viewcontroller
***Alyx intro example
**Vehicles
***Breen scene example
 
==Playing Animations in a Scene==
*Gesture events
**Postures, gestures, body-gestures
**Organizing in faceposer
**Authoring a new gesture/posture in XSI, building into your model
**Playing gesture events over SS's or ActBusies
**Using IK rules in gestures
***Barney hands-on-hips posture
***Alyx's button push gesture
*Sequence events (use sparingly)
*Flex animation
*Using Scripted Sequences in a scene
**Getting the Actor(s) in position
**Fire_trigger event to start SS
**Using a NULL sequence event to time other events (dialog, etc) to the animation
**Using Look At !Self to suppress AI head movement
**Using SS's OnFrameEvent outputs to trigger other scene events
 
More to be added.
 
[[category:Choreography]]

Latest revision as of 07:42, 16 September 2011