Sparkles
*このコンテンツは、ベータ版のAI(人工知能)を使用して翻訳されており、エラーが含まれている可能性があります。このページを英語で表示するには、 こちら をクリックしてください。
スパークルは、いくつ
Class.Sparkles.Enabled がオフ
スパークルパーティクルは、BasePart の中心からのみ発生し、その親になります。スパークルオブジェクトを Attachment に親化すると、パーティクルの開始位置をカスタマイズできます。
コードサンプル
local Players = game:GetService("Players")
local function onCharacterSpawned(character)
local hrp = character:WaitForChild("HumanoidRootPart")
-- Add sparkles that are colored to the player's torso color
local sparkles = Instance.new("Sparkles")
sparkles.Parent = hrp
sparkles.SparkleColor = character:WaitForChild("Body Colors").TorsoColor.Color
sparkles.Enabled = true
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterSpawned)
end
Players.PlayerAdded:Connect(onPlayerAdded)
概要
プロパティ
キラキラパーティクルの色を決める。
キラキラがエミットされるかどうかを決定します。
キラキラパーティクルの色を決める。
プロパティ
Color
色プロパティは、Sparkles オブジェクト (既存のすべてのパーティクルと将来のすべてのパーティクル) のすべてのパーティクルの色を決定します。ParticleEmitter.Color と同様に、ColorSequence のみが�
キラキラには、ParticleEmitter.LightEmission のパーティアル効果があるため、暗い色は透明になり、白い色は明るくなります。
コードサンプル
local Players = game:GetService("Players")
local function onCharacterSpawned(character)
local hrp = character:WaitForChild("HumanoidRootPart")
-- Add sparkles that are colored to the player's torso color
local sparkles = Instance.new("Sparkles")
sparkles.Parent = hrp
sparkles.SparkleColor = character:WaitForChild("Body Colors").TorsoColor.Color
sparkles.Enabled = true
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterSpawned)
end
Players.PlayerAdded:Connect(onPlayerAdded)
Enabled
有効 プロパティ、 much like ParticleEmitter.Enabled 、は、スパークルパーティクルがエミットされるかどうかを決定します。すでにエミットされているパーティクルは、その有効期限が切れるまでレンダ
local Debris = game:GetService("Debris")
local part = script.Parent
function stopSparkling(sparkles)
sparkles.Enabled = false -- No more new particles
Debris:AddItem(sparkles, 4) -- Remove the object after a delay (after existing particles have expired)
end
stopSparkling(part.Sparkles)
コードサンプル
local Players = game:GetService("Players")
local function onCharacterSpawned(character)
local hrp = character:WaitForChild("HumanoidRootPart")
-- Add sparkles that are colored to the player's torso color
local sparkles = Instance.new("Sparkles")
sparkles.Parent = hrp
sparkles.SparkleColor = character:WaitForChild("Body Colors").TorsoColor.Color
sparkles.Enabled = true
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterSpawned)
end
Players.PlayerAdded:Connect(onPlayerAdded)
LocalTransparencyModifier
SparkleColor
このプロパティは Sparkles.Color と同じに機能します。
SparkleColor プロパティは、Sparklesオブジェクト(既存のすべてのパーティクルと将来のすべてのパーティクル)によってエミットされるすべてのパーティクルの色を決定します。ParticleEmitter.Color およびDat
キラキラには、ParticleEmitter.LightEmission のパーティアル効果があるため、暗い色は透明になり、白い色は明るくなります。
コードサンプル
local Players = game:GetService("Players")
local function onCharacterSpawned(character)
local hrp = character:WaitForChild("HumanoidRootPart")
-- Add sparkles that are colored to the player's torso color
local sparkles = Instance.new("Sparkles")
sparkles.Parent = hrp
sparkles.SparkleColor = character:WaitForChild("Body Colors").TorsoColor.Color
sparkles.Enabled = true
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterSpawned)
end
Players.PlayerAdded:Connect(onPlayerAdded)