Minimap Render [RoRenderV3]

In April I announced my intention to develop RoRender v4. Since then I have gotten married, moved, and a bunch of other life things.

But last month, life calmed down and I’ve had some free time to get development underway for the v4. Here is a video of my progress on the UI front end so far. Note, nothing here is final, just thought it would be good to give anyone interested an update on what is going on.

16 Likes

how do I use rorender on Mac? after using make in terminal, I get the window but when the plugin is running in studio no progress is shown

Make sure you are pressing start server on the GUI window && Press play solo on the studio window.

I do that, the render starts and all but no image was seen in the preview. I fixed it tho by editing the application code

This is amazing. How long? I need it now lol.

I’m looking for Alpha testers for this application in month or two if you or anyone else reading is interested in Alpha testing hit me up and I’ll get in touch with you once it is ready for Alpha.

For Alpha testers, I want y’all to take the perspective of “I just spent $50 to get access to this software. I just spent all that money and I’m disappointed it does not do xyz… or I spent this much money and I can’t believe that it is this buggy”. Looking for actionable feedback here. RoRender has been both widly used and had pretty abysimal UX. Hopefully this coming version will be a big jump up in functionality and UX.

Just showing off what the new editor can do:

The image has only been altered by the RoRender program, no other photo editing tools has been used. The first image is what the unedited output would be and pretty similar (other than the water missing) to what the current version of RoRender would spit out.

Before:

After:

5 Likes

Will there be text for place names?

In the after pic, why are there anchors in the water terrain , and why are the house roof or what ever blue?

I’d be interested! I’ve rewritten this software in the past would be cool to try the new one!!

1 Like

He literarily says why.

*Just showing off what the new editor can do:

The image has only been altered by the RoRender program, no other photo editing tools has been used. The first image is what the unedited output would be and pretty similar (other than the water missing) to what the current version of RoRender would spit out.*

1 Like

Just a texture effect applied to the water layer.

And a seperate texture applied to the building overlay layer.

A texture is an additive “effect layer” that can be applied to specific sufaces ie: buildings and water. A user can currently select between 25 textures or choose none at all.



2 Likes

Pretty cool… here are the script(s) fixes to get this rolling with Roblox changes as of today…

--Render (ServerScript), replace Line 166 to: 
PhysicsService:RegisterCollisionGroup("RRV3IgnoreTransparentParts");

--ComputePixels (cientScript), replace function get_pixel_color to:
local function get_pixel_color(cf: CFrame): (Vector3, number)
	local raycastResult = raycast_ignore_transparent(cf.Position, RayDirection, R_RaycastParams)
	if not raycastResult or not raycastResult.Instance or not raycastResult.Instance:IsA("BasePart") then
		return Vector3.new(), 0
	end

	local pixelColor = apply_shade(get_material_color(raycastResult.Instance, raycastResult.Material), raycastResult.Normal)

	if ShadowsEnabled then
		if SmoothShadowsEnabled then
			pixelColor = apply_smooth_shadow(raycastResult.Position, pixelColor)
		else
			pixelColor = apply_sharp_shadow(raycastResult.Position, pixelColor)
		end
	end

	return pixelColor, 255
end

After you Load the files… You’ll have to manually replace these lines.

1 Like

I’m working on a game that would benefit greatly from this. If you need help testing please let me know!

1 Like

Does RoRender v4 render textures?

With the addition of the EditableImage and EditableMesh classes, there is now a way to calculate textures on a mesh. I made a little demo on texture rendering when it first came out and will definitly include it in the v4 version

5 Likes

Hello, in light V4 coming out soon @Bizarre_Devs has done me the favor of creating a discord community around the RoRender toolchain.

Alpha testing on the V4 will be organized through this Discord channel so if you’re interested in helping test alpha, make sure to join.


Official Ro-Render Discord Server

Ro-Render has officially launched its Discord server! Join us for exclusive sneak peeks of Ro-Render V4 development, the latest updates, and more.

Official Ro-Render Discord

Meet Ro-Render’s Team

5 Likes

Hello @Rootie_DaHoodie, @Hollistic, and @RobocrafterLP,

For testing purposes, please refer to this post.

Best regards,
Bizarre
Management
Ro-Render

2 Likes

The official RoRender Roblox group is now open!

:link: Join here


Does anyone know why no preview, or image generates?

The output window state that it’s sending pixel data, along with my terminal window & I’ve tried configuring loads of settings