VFXPreset
VFXPreset : Instance
Overview
게임에서 자주 사용되는 불, 폭발, 배리어, 회복 등의 효과를 사전 정의된 이펙트 중 선택하여 표현할 수 있는 인스턴스입니다.
Properties
Enabled
bool
VFXPreset의 표시 여부를 설정합니다.
Code Samples
local VFXPreset = script.Parent
VFXPreset.Enabled = true
wait(3)
VFXPreset.Enabled = false
Color
ColorSequence
VFXPreset의 색상을 ColorSequence로 설정할 수 있습니다.
ColorSequence에 시작 지점과 끝 지점의 색상을 다르게 설정하여 색상이 점진적으로 변화하도록 표현할 수 있습니다.
Code Samples
local VFXPreset = script.Parent
local Time1 = 0
local Time2 = 0.5
local ColorKeyPoints =
{
ColorSequenceKeypoint.new(Time1, Color3.fromRGB(255, 0, 0)),
ColorSequenceKeypoint.new(Time2, Color3.fromRGB(0, 0, 255))
}
VFXPreset.Color = ColorSequence.new(ColorKeyPoints)
Size
number
VFXPreset의 크기를 설정할 수 있습니다.
Code Samples
local VFXPreset = script.Parent
VFXPreset.Size = 2
Transparency
number
VFXPreset의 투명도를 설정할 수 있습니다.
Code Samples
local VFXPreset = script.Parent
VFXPreset.Transparency = 0.5
Methods
Events
See also
VFXLast updated