Minimap Render [RoRenderV3]

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

6 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

1 Like

A fix has been pushed out to V3 for this

Folks, RoRender V4 is released, see this post for details.

The issue still persists.

The output logs that it’s sent pixel data, but the application displays 0% and doesn’t render in any image.

Are you running the most recent version of the standalone application?

Yeah I am.

Connection wise, it seems like it slightly improved, as now once in a while it manages to be able to connect to the server.

Hello there, I had a similar problem a while back. At that time, for me there was something wrong for me in the source code so I had to clone the repo and make some changes and then compile. Only then did it work. Maybe something similar is going on for you? I am on Mac by the way and after changes I got it to work.

how would i make it render texture? because its not rendering texture for me

Currently RoRender v4 is the only platform that renders texture. Textures are on my V3 roadmap