What are you working on currently? (2022)

This looks amazing! I even think it’s better than the current 2022 version!

4 Likes

Nostalgia Game

12 Likes

upgraded it a little

11 Likes

That’s amazing. You seriously had me questioning it. :joy:

Agreed

1 Like

Going to the corner store, y’all need anything? (besides products because that’s still a WIP)

8 Likes

I’m working on triangle terrain editing for my custom Shard Seekers map editor. It stores objects as binary strings within chunks and only loads nearby chunks to prevent lag. Triangles need vertices loaded to be able to know what chunk to move to after a transformation, so I made it search through chunk data to find the vertices and request them (if they aren’t already loaded.) With some modifications I think I can make it recurse more to do proportional editing.

I still need to work on edge selection and mesh editing. It’s not easy because edges don’t exist in the same way objects like triangle and vertices do. I might need to use fake objects or store edges in a separate type of selection. For now I can import .obj files.

The tools perform significantly better than the default tools for large detailed worlds. This is because it can check that chunks are within the box before checking its objects, and it never needs to check individual parts.


(Default Roblox selector)

The objects placed in the map are automatic copies of models in ServerStorage. The parts are non-archivable and the data just needs to store an id so it’s really compact.

I could easily add 100k+ complex objects to a large map with no lag (assuming they aren’t all in one spot!) I made a scene viewer so I can find objects that aren’t loaded. It has a custom scrollbar and only creates guis for things that are in frame, so scrolling is lagless. Here’s a test with 37k objects:

When the game runs it actually creates the parts client-side, so it can replicate model templates and where they are instead of sending tons of parts redundantly. The server puts parts in a camera and has optimized physics-only versions of objects. This means the world can have practically unlimited graphics-only decorations without using server memory. (Ignore the lanterns, they are interactive objects that use an old system.)

Here are a few things I made with the tools:
Peddleport Lighthouse


Bubblebrooke Academy

Cultural Ruins

Mining Village (not yet named)

I have a talent hub post if you (yes, you) are interested in using these tools to build large detailed maps for Shard Seekers. For the past year I’ve been reworking progression and developing highly scalable content systems and tools like this, and I’m preparing to start releasing content again.

52 Likes

My game has reached 10 Million Visits!

Well, almost

Almost two years ago, we had started to develop this game.
In the summer of 2021, we had about 35 visits per day because our game appeared in searches.
On December 11, 2021, we exceeded 100,000 visits and launched our first event.
Today, we have more than 150,000 players every day and 10,000,000 visits in total.

:trophy: Celebrate 10 million visits with us!

Clock's Difficulty Chart Obby HARD - Roblox

13 Likes

Had some of your previous posts on this saved in tabs; really excited to see how this is developing! I can see these maps becoming quite large; do you have a size limit currently, and how do you avoid floating point errors? Excited to see what comes next!

I’m limiting maps to around 8000x8000. Characters smaller than 1 stud start to jitter faintly but are still playable at around 4000 studs from the origin.

Here’s how object location accuracy is maintained while remaining compact:

  • Because the map objects are automatically generated copies of template models, they don’t suffer from matrix creep when moving them around.
  • Map object positions are stored using three 32 bit unsigned integers that specify the object’s location relative to its enclosing chunk. For comparison, parts are stored using three floats, which only have 24 bits of fraction precision that gets worse the further out you go. I can adjust the position format too depending on the format type, for example terrain triangles can use fewer bits because their position is derived from vertices.
  • The custom transform tools all use double arithmetic (64 bit instead of 32 bit Vector3s) to reduce rounding errors and increase overall accuracy.
  • Objects are placed into chunk octaves (2^n) based on their size, so an apple might have slightly more position precision than a building. This is negligible but still interesting.
  • Object rotations (X and Y matrix vectors) are stored in 6 floats. Roblox normally stores using 9 floats, but I just get the Z vector via cross product. It’s possible to design a rotation format that can express more rotation steps using less space than this, but this is simple to implement, fast to decode, and seemed like a good compromise. Using double arithmetic during rotation transformations likely makes up for the negligible precision lost by omitting Z.

When the map converts to the server format (for publishing/testing), it takes the high precision positions/rotations and compresses them into formats more suitable for streaming. Currently most objects convert to 3 floats for position, 1 float for scale, and 6 bytes for rotation using smallest three quaternion compression. Some objects have their own special formats that replicate full chunks or other special data, like triangle terrain and axis-aligned water regions. It all replicates over remote events as packed strings using a custom streaming system.

I also have a PBR texture processing workflow that automates downsampling and exporting to 1024x1024 images. It supports .exr and 16 bit .png files, and does downsampling / color correcion using 32 bit floats before casting to 8 bit in the appropriate color space and applying dilation that compresses nicely. I had a photoshop script to do this originally but it was slow and messed up the color space; Photoshop would also take my 16 bit images [0, 65535] and convert them to [-16384, 16384] or some nonsense. It started as a C++ project but is now written in Rust.

I believe it’s really important for development tools to be precise so that the data can be downsampled for streaming and still have great quality.

11 Likes

These look really good. Can you notify me if it ever becomes a model, also is it good for performance?

3 Likes

Left Behind.

29 Likes

I technically worked on this earlier today but whatever, it counts.

In my experience/game, VR users can do at least one thing that “normal” players can’t: Grabbing and dropping stuff, in both hands. It seems I haven’t shown a video of it before on the DevForums, but here’s how it looks as of today.

Before today, letting go of something made it freeze in the air before falling, probably due to network ownership switching. If you’re wondering, this is the same game that has the custom drinks and drink machine.

13 Likes



upd: i changed rim model, tires, light texture, and also car paint material

21 Likes

Amazing! Love the details on this.

3 Likes


unknown-37
unknown-31






36 Likes

I make a horror story game. But currently there was a problem.

is it the train from the film “The pollar express”

Wow, this looks realistic! Good Job!

1 Like

I’m making a fighter jet helmet ugc concept

8 Likes

Left Behind - An apocalyptic wasteland full of diversity.

24 Likes