Click or drag to resize

GMovieClipSetPlaySettings Method

Play from the start to end, repeat times, set to endAt on complete. 从start帧开始,播放到end帧(-1表示结尾),重复times次(0表示无限循环),循环结束后,停止在endAt帧(-1表示参数end)

Namespace:  FairyGUI
Assembly:  FairyGUI (in FairyGUI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void SetPlaySettings(
	int start,
	int end,
	int times,
	int endAt
)

Parameters

start
Type: SystemInt32
Start frame
end
Type: SystemInt32
End frame. -1 indicates the last frame.
times
Type: SystemInt32
Repeat times. 0 indicates infinite loop.
endAt
Type: SystemInt32
Stop frame. -1 indicates to equal to the end parameter.
See Also