npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rbxts-its-a-bit-random/ceiveimgizmo

v3.6.0

Published

A performant immediate and retained mode gizmo library.

Downloads

5

Readme

Ceive ImGizmo

A performant immediate and retained mode gizmo library.

Ceive was made in mind for both performance, immedate mode and retained mode, after I looked at the lack of good gizmo librarys on roblox I set out to create one that was not only more performant than other librarys. But was also easier to work with and had more capabilities.

(The name Cieve ImGizmo is derived from Perceive and Immediate Mode Gizmo)

Demo

The demo place can be found here: https://www.roblox.com/games/13812842210/Gizmos-Demo And the rbxm + rbxl files can be found in the releases.

You can also install from wally via imgizmo = "jakeywastaken/imgizmo@^3.5.0"

Shapes

Boxes with or without triangles image image

Wedges with or without triangles image image

Spheres image

Cylinders image

Capsules image

Custom Import OBJ Meshes image

Usage

The demo place provides an example for every single shape including the custom mesh. But heres a basic example on how you could create a cylinder

Gizmo.PushProperty("Color3", Color3.new(0.184314, 0.184314, 1))
Gizmo.Cylinder:Draw(CFrame.new(0, 10, 0) * CFrame.Angles(0, math.rad(25), 0), 2, 4, 20) -- Location: CFrame, Radius: number, Length: number, Subdivisions: number

Subdivisions just define how many segments should make up a shape it's the same as blender when you define how many vertices should make up a cylinder for example.

How it works

Ceive ImGizmo is both an immediate and retained gizmo library, immediate mode means that instead of creating objects and them persisting over multiple frames, they are instead deleted after each render cycle and ready to be used next frame. This means you dont have to keep track of objects and destroy them. All of it is handled at the end of each frame (On heartbeat)

This means setup is so easy you can have gizmos visualising look directions, nav meshes, attack regions and hitboxes in just minutes.

Performance

Ceive uses a WireframeHandleAdornment, This means it is incredibly fast, being able to show 100k lines at 20fps you never have to worry about performance. All of the lines are rendered using 2 Adornments, one thats AlwaysOnTop and one that isn't. You can be rest assured that there will be negligable performance impact when your gizmos are enabled.

Internally the retained mode just calls back to the immediate mode functions, so there is no performance difference between them. If you'd wish to enable / disable all gizmos then you can call Gizmo.SetEnabled(value: boolean) this will disable all rendering and clear any Rays / Adornments.