1 / 11

Yingcai Xiao

Game Development Animation. Yingcai Xiao. Video Game. Interactive animation: user-> interface (look) -> action (feel) -> feedback (A/V, haptic). Animation. Animation: any change that has a visual effect. Motion Dynamics: movements (geometry change)

palmer-rios
Télécharger la présentation

Yingcai Xiao

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Game Development Animation • Yingcai Xiao

  2. Video Game Interactive animation: user-> interface (look) -> action (feel) -> feedback (A/V, haptic)

  3. Animation Animation: any change that has a visual effect. Motion Dynamics: movements (geometry change) Update Dynamics: attribute change (color, texture, …) Others: camera position, lighting, rendering techniques, …

  4. Key-frame Animation • Defining key-frames • Inbetweening with interpolations: • Lerping (linear interpolation) • parabola interpolation

  5. Key-frame Animation

  6. Neighborhoodskeletons: defineinterpolatedshapes

  7. Graphical languages P-curves (parametric representation of motion)

  8. Animation Control • Explicit: animator provides a description of everything that occurs in the animation. • Tracking live action. • Procedural: movement computed by a procedure. • Actors (Object-oriented high-level procedural control) • Kinematics: positions and velocities of points. • Dynamics: physical laws that govern kinematics. • Physically based: cloth draping, plastics bending, … • Constraint-based: constraint movements.

  9. Double Buffering Why? To reduce flickering How? Draw to the invisible back buffer Copy to the visible front buffer. (Btblt)==>very fast with HW assistance

  10. Double Buffering – SRGP Pseudo Code void Draw() { SRGP_useCanvas(bbfr); DrawObjects(); SRGP_useCanvas(SCREEN_CANVAS); SRGP_copyPixel(bbfr, rect, pnt); }

  11. Animation in Unity3D • Key-frame animation

More Related