Legacy:TarquinSpiralStairBuilder

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 22:58, 21 November 2003 by imported>Tarquin (answered)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Object >> BrushBuilder >> TarquinSpiralStairBuilder

A Custom Brushbuilder available as part of the Tarquin Brushbuilders pack. This is intended as a replacement for the default Spiral Stair builder in UnrealEd. The default builder does not allow subtracted brushes. This new builder has all the options of the native builder and performs the functions of the Curved Stair builder too.

Parameters

StepHeight 
The height difference from one step to the next and the height that a player climbs for each step.
StepThickness 
The height of each step block. This is usually greater than StepHeight. Setting the two to the same value will make a staircase where the steps only touch at an edge. If StepThickness is less than StepHeight, each step is totally seperate from its neighbors.
StepWidth
Width of the steps.
InnerRadius 
Distance from the center of curvature to the inner edge of the steps.
StepsPerCircle 
How many steps are calculated in one full circle. The formula is AnglePerStep * StepsPerCircle = 360 degrees.
NumSteps 
The number of steps in the staircase. This can be larger than StepsPerCircle in some cases only. If you try something that isn't possible, the 'Bad Parameters' dialog box will explain the problem.
AntiClockwise 
Otherwise known as counterclockwise.
TopStyle 
Select whether you want sloped top, or regular top with steps, or a flat top. The flat option will make stairs like the CurvedStair builder, and will not allow more than a full circle. Note that a full circle, flat base brush, as with CurvedStair builder, will meet itself and two polys will touch; the subtracted brush will have a sheet effect between the first and last steps.
BottomStyle 
Same as above. Note in particular you can't have both set to flat; the code is complex enough without building cylinders too. You can't have both set to slope if StepThickness isn't strictly greater than StepHeight, since the brush would then have zero thickness throughout. The builder checks for these and other problems and explains them as you go.
GroupName 
Works the same as in the native brush builders.

Usage

This builder can make twisting halls that have floors or ceilings that are flat, slope or stair or any combination!

Comments

Perhaps some screenshots would convey all the possibilities this builder can do..