Skip to content

Latest commit

 

History

History
91 lines (55 loc) · 1.82 KB

d3dxplayback-type.md

File metadata and controls

91 lines (55 loc) · 1.82 KB
description ms.assetid title ms.topic ms.date topic_type api_name api_type api_location
Defines the type of animation set looping modes used for playback.
2ce26bf0-2b33-4193-a58f-03493a051351
D3DXPLAYBACK_TYPE enumeration (D3dx9anim.h)
reference
05/31/2018
APIRef
kbSyntax
D3DXPLAYBACK_TYPE
HeaderDef
d3dx9anim.h

D3DXPLAYBACK_TYPE enumeration

Defines the type of animation set looping modes used for playback.

Syntax

typedef enum D3DXPLAYBACK_TYPE { 
  D3DXPLAY_LOOP         = 0,
  D3DXPLAY_ONCE         = 1,
  D3DXPLAY_PINGPONG     = 2,
  D3DXPLAY_FORCE_DWORD  = 0x7fffffff
} D3DXPLAYBACK_TYPE, *LPD3DXPLAYBACK_TYPE;

Constants

D3DXPLAY_LOOP

The animation repeats endlessly.

D3DXPLAY_ONCE

The animation plays once, and then it stops on the last frame.

D3DXPLAY_PINGPONG

The animation alternates endlessly between playing forward and playing backward.

D3DXPLAY_FORCE_DWORD

Forces this enumeration to compile to 32 bits in size. Without this value, some compilers would allow this enumeration to compile to a size other than 32 bits. This value is not used.

Requirements

Requirement Value
Header
D3dx9anim.h

See also

D3DX Enumerations