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

fr.jeanf.scenemanagement

v0.7.14

Published

This package contains two scene loading system, one is additive, the other is to load subscenes. Both system are living side-by-side. The dynamic systems handles the loading of all static content (environment) using subscenes. The additive system loads s

Readme

Scene Management

The main goal of this system is to be able to start the game from anywhere in the world and be able to load all the required visuals & scene logic you might have in this world. All the static meshes are stored in subscenes leveraging the Entitty Component System to load the world as fast as possible. This part of the system uses "Volumes" & "relevant" entities do decide which volume-set to load (containing references to a bunch of scenes related to that set). By checking the position of the relevant entities, we can then define which volumes are to be loaded.

In parallel I also build a Additive-Loading system that loads content depending on the region or zone (using colliders to detect the player's position) to be able to use MonoBehavior scripts without having to recode the whole codebase. Each region or scenario can have dependency that will remain loaded until either a region or a scenario became irrelevant. The additive system loads scene additively depending on zone & region and upon scenario load/unload requests.

Key elements:

  • Loading scenes additively
  • Concept of Region & Zones
  • Concept of Scenario
  • Loading scene dynamically depending on position

How to use: 1: setup some volumes to load subscenes dynamically 2: setup some volume sets for your subscenes 3: add a relevant authoring script to some gameObject (it will follow the MainCamera). 4: Create and place zones & zoneContainers to detect the player's current position (in the future this step will be removed to as volumes should be enough to retreive this information). 5: Import the AdditiveLoading prefab in your scene from the samples 6: setup your & organize scriptable objects: 7 [OPTIONAL]: setup your spawn points per region, note that you can create a different initial spawn point, only one region should have the initial spawn point (later will be overriten by last player position when last playing the game)


Acknowledgment:


Compatibility:

  • URP
  • HDRP
  • Unity 6000.0.24f1 and above.

How to install the package:

  • add new scopedRegisteries in ProjectSettings/Package manager
  • name: jeanf
  • url: https://registry.npmjs.com
  • scope fr.jeanf

Depedencies:

  • Make sure to install UniTask as well: https://github.com/Cysharp/UniTask?tab=readme-ov-file#install-via-git-url

LICENCE: