What are you working on currently? (2018)

I’m using Region3s to detect parts. The reason why it didn’t paint the walls on the second bomb was because I didn’t mark those walls as paintable.

And yeah, I’m using part reductions from the previous post. That blast has a radius of roughly 12 studs, and the grid is 0.25 studs in size. That means I’m painting roughly pi*(12^2)/(0.25^2) = 7238 cells per explosion.

EDIT: Image with outlines:

5 Likes

What sort of data structure are you representing the cells with? Finding the minimal rectilinear polygon rectangulation is a neat problem.

The color of each cell is stored in a flat array. The painting of each cell is done by the server. To reduce the amount of data I send to the client and to reduce the amount of work the client has to do, I apply the algorithm that sircfenner described in this post to convert the cells into a bunch of rectangles. I encode each rectangle as three characters (a color index, the top-left corner of the rectangle, and the bottom-right corner of the rectangle) which I broadcast to each client.

(I’m not sure what minimal rectilinear polygon rectangulation is, but from the googling I’ve done it doesn’t seem like I’m doing anything of the sort.)

2 Likes

the sounds are really satisfying lol

1 Like

Detailing is fun, kinda.

Edit: I might be open to clothing commissions soon, but that’s a maybe.

4 Likes

I’ve release this!

2 Likes

Small project I’ve been working on in my free time with @SneakAttack88 . Coming along nicely


10 Likes

Here’s a kinda cool before/after pic of a map me and @Worthe have been working on.


15 Likes

Details that are tarnishing the clothing.exe

Now with pad pads.
image

7 Likes

Turned the re:VOLT menu loops into an actual song designed as a test track for the game engine. Repetitive as hell, but it works for what it is.

2 Likes

Finished it. I’m pretty impressed with it.
image
image
image

14 Likes

working on some stuff

2 Likes

thomas

Deep1

PeteyK473

Fifteam19


Just some egg hunt stuff I made that I never really shared :>

9 Likes

Not necessarily a Roblox thing, but I just wrapped a shoot for an upcoming video.

12 Likes

Coast Daylight, never thought I’d make this but I did it anyway.

19 Likes

Made this jacket for a group, I like the style

So um, a little bit ago I ended development on Space Frontier, and have been working on a new project.

Don’t wanna give out too many details on the project yet, but if you guys know anything about Space Frontier I’m sure that you know it has some pretty terrible GUIs. Been trying to work on that for this next game.

Not that it is super technically impressive or anything, but here’s my hp bar, hunger bar, and timer guis for the game so far.

3 Likes

Commisions when mah dude.

I may have a suggestion to help with performance on lower tier machines while allowing higher tier machines continue with the detailed effects.

Checking base on their graphic level settings, you can either generate detailed parts as the paint or generate a fewer parts with a BillboardGui to imitate the detailed effects as a visual illusion.

Just a suggestion, I want to know what do you think. :slight_smile:

SurfaceGuis are a no-go since they are rendered on top of explosions and particles at certain angles. They are also shaded weirdly.

Also painting doesn’t seem to be a performance bottleneck anymore (at least with a 1-stud grid).

1 Like