Kelas Engine
Model
*Konten ini diterjemahkan menggunakan AI (Beta) dan mungkin mengandung kesalahan. Untuk melihat halaman ini dalam bahasa Inggris, klik di sini.
Rangkuman
Properti
Metode
AddPersistentPlayer(playerInstance: Player):() |
BreakJoints():() |
breakJoints():() |
MakeJoints():() |
makeJoints():() |
RemovePersistentPlayer(playerInstance: Player):() |
SetPrimaryPartCFrame(cframe: CFrame):() |
TranslateBy(delta: Vector3):() |
Anggota yang Diwariskan
4 yang diwarisi dari PVInstance
57 yang diwarisi dari Instance
6 yang diwarisi dari Object
Diwariskan oleh
Contoh Kode
Instansiasi Model Dasar
local function groupObjects(objectTable)
local model = Instance.new("Model")
for _, object in pairs(objectTable) do
object.Parent = model
end
return model
end
local objects = {
Instance.new("Part"),
Instance.new("Part"),
}
groupObjects(objects)Referensi API
Properti
PrimaryPart
Contoh Kode
Melempar Dadu
-- Buat model dadu dengan dua setengah dan sambungkan mereka bersama
local diceModel = Instance.new("Model")
diceModel.Name = "ChanceCube"
local diceTop = Instance.new("Part")
diceTop.Size = Vector3.new(4, 2, 4)
diceTop.Position = Vector3.new(0, 1, 0)
diceTop.Color = Color3.new(0, 0, 1)
diceTop.Parent = diceModel
local diceBottom = diceTop:Clone()
diceBottom.Position = Vector3.new(0, -1, 0)
diceBottom.Color = Color3.new(1, 0, 0)
diceBottom.Parent = diceModel
local weld = Instance.new("WeldConstraint")
weld.Part0 = diceTop
weld.Part1 = diceBottom
weld.Parent = diceModel
-- Tempatkan dadu di udara di atas origin workspace (tidak memerlukan bagian utama)
diceModel.Parent = workspace
diceModel:PivotTo(CFrame.new(0, 10, 0))
-- Tetapkan bagian utama sebelum simulasi fisik
-- Tanpa baris ini, skrip akan selalu mengeluarkan hal yang sama dan bounding box dari model tidak akan mengubah orientasi
diceModel.PrimaryPart = diceTop
-- Tunggu sedikit sebelum melempar dadu (biarkan menetap di lantai)
for i = 5, 1, -1 do
print("Melempar dadu dalam...", i)
task.wait(1)
end
diceTop:ApplyAngularImpulse(Vector3.new(15000, 1000, 5000))
diceTop:ApplyImpulse(Vector3.new(0, 3000, 0))
task.wait(1)
-- Tunggu hingga roll selesai
while diceTop.AssemblyLinearVelocity.Magnitude > 0.1 or diceTop.AssemblyAngularVelocity.Magnitude > 0.1 do
task.wait()
end
-- Dapatkan orientasi dadu, dipengaruhi oleh bagian utama
local orientation = diceModel:GetBoundingBox()
if orientation.YVector.Y > 0.5 then
print("Itu anak laki-laki!")
else
print("Itu ibunya!")
endWorldPivot
Contoh Kode
Atur Ulang Pivot
local function resetPivot(model)
local boundsCFrame = model:GetBoundingBox()
if model.PrimaryPart then
-- Menetapkan PivotOffset untuk bagian utama model
model.PrimaryPart.PivotOffset = model.PrimaryPart.CFrame:ToObjectSpace(boundsCFrame)
else
-- Menetapkan WorldPivot untuk model
model.WorldPivot = boundsCFrame
end
end
resetPivot(script.Parent)Metode
AddPersistentPlayer
BreakJoints
breakJoints
GetExtentsSize
Memberikan nilai
Contoh Kode
Model GetExtentsSize
local model = Instance.new("Model")
model.Parent = workspace
local RNG = Random.new()
for _ = 1, 5 do
local part = Instance.new("Part")
part.Anchored = true
part.Size = Vector3.new(RNG:NextNumber(0.05, 5), RNG:NextNumber(0.05, 5), RNG:NextNumber(0.05, 5))
part.Parent = model
end
print(model:GetExtentsSize())GetModelCFrame
GetModelSize
GetPrimaryPartCFrame
GetScale
Memberikan nilai
Contoh Kode
Mengganti model pengganti menggunakan PivotTo dan ScaleTo
local CollectionService = game:GetService("CollectionService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
-- Temukan semua model dengan tag yang ingin kita ganti
local items = CollectionService:GetTagged("Tree")
local newModel = ReplicatedStorage.FancyTreeReplacementModel
for _, item in items do
-- Buat item baru dan skala / posisikan di tempat item lama berada
local newItem = newModel:Clone()
newItem:ScaleTo(item:GetScale())
newItem:PivotTo(item:GetPivot())
-- Tambahkan tag yang sama ke pengganti
CollectionService:AddTag(newItem, "Tree")
-- Hapus item lama dan jadikan item baru sebagai parent
newItem.Parent = item.Parent
item:Destroy()
endMakeJoints
makeJoints
move
MoveTo
Parameter
Memberikan nilai
()
Contoh Kode
Model PindahKe
local START_POSITION = Vector3.new(-20, 10, 0)
local END_POSITION = Vector3.new(0, 10, 0)
local model = Instance.new("Model")
model.Parent = workspace
local part1 = Instance.new("Part")
part1.Size = Vector3.new(4, 4, 4)
part1.Position = START_POSITION
part1.Anchored = true
part1.BrickColor = BrickColor.new("Bright yellow")
part1.Parent = model
local part2 = Instance.new("Part")
part2.Size = Vector3.new(2, 2, 2)
part2.Position = START_POSITION + Vector3.new(0, 3, 0)
part2.Anchored = true
part2.BrickColor = BrickColor.new("Bright blue")
part2.Parent = model
model.PrimaryPart = part1
model.Parent = workspace
local obstruction = Instance.new("Part")
obstruction.Name = "Obstruction"
obstruction.Size = Vector3.new(10, 10, 10)
obstruction.Position = Vector3.new(0, 10, 0)
obstruction.Anchored = true
obstruction.BrickColor = BrickColor.new("Bright green")
obstruction.Parent = workspace
task.wait(3)
model:MoveTo(END_POSITION)moveTo
RemovePersistentPlayer
ResetOrientationToIdentity
SetIdentityOrientation
SetPrimaryPartCFrame
TranslateBy
Parameter
Memberikan nilai
()
Contoh Kode
Model TerjemahkanDengan
local START_POSITION = Vector3.new(-20, 10, 0)
local END_POSITION = Vector3.new(0, 10, 0)
local model = Instance.new("Model")
local part1 = Instance.new("Part")
part1.Size = Vector3.new(4, 4, 4)
part1.CFrame = CFrame.new(START_POSITION) * CFrame.Angles(0, math.rad(45), 0)
part1.Anchored = true
part1.BrickColor = BrickColor.new("Kuning cerah")
part1.Parent = model
local part2 = Instance.new("Part")
part2.Size = Vector3.new(2, 2, 2)
part2.CFrame = part1.CFrame * CFrame.new(0, 3, 0)
part2.Anchored = true
part2.BrickColor = BrickColor.new("Biru cerah")
part2.Parent = model
model.PrimaryPart = part1
model.Parent = workspace
local obstruction = Instance.new("Part")
obstruction.Name = "Penghalang"
obstruction.Size = Vector3.new(10, 10, 10)
obstruction.Position = Vector3.new(0, 10, 0)
obstruction.Transparency = 0.5
obstruction.Anchored = true
obstruction.BrickColor = BrickColor.new("Hijau cerah")
obstruction.Parent = workspace
task.wait(3)
-- gunakan TranslateBy untuk memindahkan model ke dalam penghalang
model:TranslateBy(END_POSITION - START_POSITION)