Git Product home page Git Product logo

Comments (2)

jdies avatar jdies commented on August 12, 2024

Closing after discussion on Discord.

Phyronnaz — Today at 2:04 PM
Its just that it doesn't work great with cubic due to the cubes being offset by half a voxel

from voxelpluginfreelegacy.

jdies avatar jdies commented on August 12, 2024

Workaround

I only use cubic in my project, so I can just modify the C++ code and offset DrawDebugIntBox by .5 voxels.

This works for me (voxel size is 200)

void UVoxelDebugUtilities::DrawDebugIntBox(
	const FVoxelCoordinatesProvider& World,
	UVoxelLineBatchComponent& LineBatchComponent, 
	FTransform Transform,
	FVoxelIntBox Box, 
	float Lifetime, 
	float Thickness,
	FLinearColor Color)
{
	VOXEL_FUNCTION_COUNTER();
	
	// Put it in local voxel world space
	const FVector Min = LineBatchComponent.GetComponentTransform().InverseTransformPosition(World.LocalToGlobal(Box.Min)) - FVector(World.GetVoxelSize() * 0.45f);
	const FVector Max = LineBatchComponent.GetComponentTransform().InverseTransformPosition(World.LocalToGlobal(Box.Max)) - FVector(World.GetVoxelSize() * 0.45f);
	const FBox DebugBox(Min, Max);
	DrawDebugBox(LineBatchComponent, Transform, DebugBox, Lifetime, Thickness, Color);
}

Screenshot 2021-09-12 142707

Cool

from voxelpluginfreelegacy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.