Tagged 'world'

World Scale UV Tiling

4 votes

I have a material library in Unreal that uses real-world values to calculate how much they should tile.

I needed the ability to apply any material to any mesh in Unreal, including custom unwrapped ones, and have the materials be at the same scale. This script solves that issue.

If I wanted to solve this manually:

World / Local coordinate system toogle

1 vote

macroScript CoordinatesToogle
category: "Scripts"
(
maniptype = toolMode.commandmode as string
varAxis = getRefCoordSys() as string
case of
(
(varAxis == "hybrid"): toolMode.coordsys #world
(varAxis == "screen"): toolMode.coordsys #world
(varAxis == "parent"): toolMode.coordsys #world
(varAxis == "local"): toolMode.coordsys #world
(varAxis == "gimbal"): toolMode.coordsys #world
(varAxis == "grid"): toolMode.coordsys #world
(varAxis == "working"): toolMode.coordsys #world
(varAxis == "world"): toolMode.coordsys #local
)
)

Incremental Transform

14 votes

A script to move or rotate an object set of ObjName[_###] Will work on multiple ObjNames, but provides confirmation request for mis-matched object base names. Objects are sorted in alphanumeric name order for incremental transformation, i.e., obj_001 +10 deg., obj_002 +20 deg, obj_003 +30 deg...

Axis-space selectable. Not very elegant, but seems to work OK.

Syndicate content