Socket
Book a DemoInstallSign in
Socket

@quenty/camera

Package Overview
Dependencies
Maintainers
1
Versions
322
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quenty/camera

Quenty's camera system for Roblox

14.23.1
latest
Source
npmnpm
Version published
Weekly downloads
371
-7.71%
Maintainers
1
Weekly downloads
 
Created
Source

Camera

Documentation status Discord Build and release status

CameraStackService provides a camera stack of objects that can report a camera state. This allows a composable camera system for a variety of situations that arise, and lets systems interop with each other

Installation

npm install @quenty/camera --save

Features

  • Minor VR support
  • Support for composable camera types
  • Support for interpolation between camera nodes
  • Support for touch and gamepad support and controls
  • Support for camera shake

Camera State

CameraState is an immutable camera system used for camera interpolation. Designed to make camera effects easy, it trades some efficiency and speed for making a not confusing camera system.

Camera state stores internal state of Coordinate frames as quaternions. This means that the classic lerp equation. Operations have been overridden to make this easier to work with.

Ok. It's not entirely immutable. They are kind of lazy, that is, reading data doesn't affect the state of them. There are no required update loops or anything for the most part.

Camera effect API

Current Camera Effects have the following API available. Adding new effects means that these two should follow the same API specifications

Add + operator

Returns a new Summed camera and adds the two effects together. This is used for combining effects

.CameraState

Indexing the CameraEffect should return the current camera state. This means that state is easy to index.

In previous versions, the following will also work. However, this is no longer true.

  • .State
  • .CameraState
  • .Camera

This will return a CameraState

!!! warning Note that eventually we plan to deprecate everything but .CameraState

DefaultCamera

This class tracks the current camera ROBLOX uses and lets it maintain how it operates using a BindToRenderStep trick.

  • Should call BindToRenderStep during construction
  • Only one should exist at once per client (not enforced in code, however)

SummedCamera

This class takes two arguments and returns the summation of the two

  • Arguments can be either CameraState or a CameraEffect, assuming the effect has a CameraState member

FadingCamera

This classes allows the effects of a camera to be faded / varied based upon a spring

  • Starts at 0 percent effect

Usage

Here is sample usage of using just a subcomponent. Recommendation is to use full camera stack service.

local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")

local FadeBetweenCamera3 = require(modules.FadeBetweenCamera3)
local CustomCameraEffect = require(modules.CustomCameraEffect)
local CameraState = require(modules.CameraState)

local defaultCamera = require(modules.DefaultCamera).new()
defaultCamera:BindToRenderStep() -- capture roblox camera automatically

local targetCamera = CustomCameraEffect.new(function()
  local target = CameraState.new()
  target.CFrame = CFrame.new(0, 100, 0)
  target.FieldOfView = 70

  return target
end)

local faded = FadeBetweenCamera3.new(defaultCamera, targetCamera)
faded.Speed = 5

RunService:BindToRenderStep("CameraStackUpdateInternal", Enum.RenderPriority.Camera.Value + 75, function()
  faded.CameraState:Set(Workspace.CurrentCamera)
end)

-- Input
local mouse = game.Players.LocalPlayer:GetMouse()
local visible = false
mouse.Button1Down:Connect(function()
  visible = not visible
  if visible then
    faded.Target = 1
  else
    faded.Target = 0
  end
end)

Keywords

Roblox

FAQs

Package last updated on 12 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.