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 🙏

© 2024 – Pkg Stats / Ryan Hefner

com.ellyality.camera.pixel

v1.0.0

Published

Pixel Perfect Camera

Downloads

13

Readme

Unity Pixel Camera

A resolution independent pixel perfect camera for Unity.

This package simplifies making a Unity camera render to exact pixel units, for use with pixel art or similar art styles where blockiness is part of the aesthetic.

Features

  • Simple setup
  • Experimental perspective camera support

Standard unity camera

Standard camera

Pixel perfect camera

Pixel camera

Installation

Clone the repository or download the UnityPackage of the latest release. The PixelCamera directory can be moved to your location of choice in your unity project.

Basic Usage

  1. Attach the Pixel Camera script to an existing camera.
  2. Set Pixels Per Unit to an appropriate value, usually matching the settings used for your assets.
  3. Set the Zoom Level for the camera.

Advanced Settings

  • Camera Material - A material applied to the camera output, allows shaders to modify the image. The camera output is set as the _MainTex of the material.
  • Aspect Stretch - Apply a stretch to the output, allows the display to be non square pixels.
  • Down Sample - Scales down the render resolution, making the output blockier.
  • Perspective Z - Only for perspective cameras. The Z distance between the near and far clip planes, that is rendered as pixel perfect.

Caveats

  • If a camera or sprite is out of alignment with the pixel grid, unwanted artifacts may occur.
  • Pixel Camera will not automatically zoom in or out according to the window/viewport size.
  • Camera Viewport Rect settings are not taken into account.

Perspective Camera Notes

  • A zoom level below 1 will leave a border on the edge of the screen.
  • Perspective camera is unoptimized. A high Field of View setting will generate unreasonably large RenderTextures. Use with caution.

Technical Details

Pixel camera takes the size of the screen and finds the render size required to cover the screen in a pixel perfect manner, at the given settings.

A RenderTexture of the calculated render size is created, and if needed the camera settings are modified so the render fits the calculated size.

The camera output is sent to the RenderTexture.

A dummy camera that renders nothing is created, and the OnPostRender() function is used to draw the output of the attached camera onto the screen using GL commands.

API

Properties

ZoomLevel : float

The pixel zoom scale used by the camera.

PixelsPerUnit : float

The pixels per unit value used by the camera.

CameraMaterial : Material

The Material used to render the camera output, setting to null will use the default material. Pixel Camera sets the camera output as the _MainTex texture of the given material.

AspectStretch : Vector2

An additional stretch applied to the camera, allows camera to render as non square pixels.

DownSample : float

Scales down the render resolution, makes the output blockier. Minimum value is clamped at 1.

PerspectiveZ : float

With a perspective camera, the distance between the camera near and far planes that is rendered as pixel perfect. Value is clamped between the near and far plane values.

RenderTexture : RenderTexture, read only

Access the RenderTexture used as the camera output.

CameraSize : int[], read only

Actual pixel size of the camera, as an integer array.

Methods

ForceRefresh() : void

Force the camera to recalculate rendering sizes.

CheckCamera() : bool

Checks camera settings. If different from the last camera settings used, camera will be setup again. Returns true when settings have changed.