Hello there!
I’m trying to recreate this camera angle in an upcoming Roblox game:
It’s something like a 2.5D game except the camera is tilted down slightly. What is it?
Hello there!
I’m trying to recreate this camera angle in an upcoming Roblox game:
It’s something like a 2.5D game except the camera is tilted down slightly. What is it?
Something like this might help you:
local angle = -- Basically, where the camera should look from, 0 means negative Z, 90 means positve x and etc.
local Distance = 10 -- How far the camera is from the target.
local Offset = CFrame.Angles(0,math.rad(angle),0)*CFrame.new(0,Distance/(math.pi*2),Distance)
local Head = Character.Head
Camera.CFrame = CFrame.new((CFrame.new(Head.Position)*Offset).Position,Head.Position)
Ah yes I’ve done this before. It’s basically 2D but tilted, 2.5D or whatever you want to call it. To recreate this make a part that high and far like in the picture shown, then make that part facing the player, then make the camera that parts CFrame.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.