This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
cw4:scripting:getting_started_with_beams [2020/12/12 00:08] – created cornucanis | cw4:scripting:getting_started_with_beams [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{page> | + | <=[[4rpl:start|Index]] \\ |
- | <=[[cw4:scripting|Creeper World 4 Scripting]] | + | <=[[cw4:Tutorials]] |
===== Getting Started With Beams in CW4 ===== | ===== Getting Started With Beams in CW4 ===== | ||
Line 6: | Line 6: | ||
Working with beams may seem a bit overwhelming at first due to the number of properties to assign, but it's actually rather simple once you've whittled it down to the basics. Here are the minimum steps required to get a beam operational with 4RPL: | Working with beams may seem a bit overwhelming at first due to the number of properties to assign, but it's actually rather simple once you've whittled it down to the basics. Here are the minimum steps required to get a beam operational with 4RPL: | ||
- | * Create beam with CreateBeam (Takes 3 arguments. | + | * Create beam with [[4rpl: |
- | * (OPTIONAL) Attach beam to unit with AttachBeam (Takes 3 arguments. Int for beam ID, int for ID of unit to attach to, string for name of sub-object within unit to attach to.) | + | * (OPTIONAL) Attach beam to unit with [[4rpl: |
- | * Designate offset of beam's start point with SetBeamStart (Takes 2 arguments. Int for beam ID, V3 for position.) If you did not use AttachBeam, the position | + | * Designate offset of beam's start point with [[4rpl: |
- | * Designate beam's end point with SetBeamEnd (Takes 2 arguments. Int for beam ID, V3 for position of beam's end.) Beam's end seems to be treated as absolute world position, unless you use SetBeamForceLocalEnd (Take 2 arguments. Int for beam ID, bool for state.) | + | * Designate beam's end point with [[4rpl: |
- | * (OPTIONAL) If you wish to make the beam invisible or restore its visibility, use SetBeamVisible (Takes 2 arguments. Int for beam id, bool for state.) | + | * (OPTIONAL) If you wish to make the beam invisible or restore its visibility, use [[4rpl: |
- | * (OPTIONAL) If you wish to destroy the creeper along the path of the beam as the sweeper does, you will want to use ClipCreeperLine (Takes 5 arguments. V3 for start position, V3 for end position, int for width, bool for affects creeper, bool for affects anti-creeper.) The amount of creeper allowed to pass through the line is determined by the vertical height of the beam (in other words, the y components supplied for the start and end vectors.) If you set both y components to 0, it should clip all creeper passing over the line. | + | * (OPTIONAL) If you wish to destroy the creeper along the path of the beam as the sweeper does, you will want to use [[4rpl: |
+ | Additional beam related commands: [[4rpl: | ||
- | |||
- | Additional beam related commands: IsBeam, SetBeamBrightness, |