Cables and Ropes

From Valve Developer Community
Jump to navigation Jump to search

Cables provide a simple method for adding movement and complexity to a scene for a relatively low cost. Cables can be strung between moving objects and used as a visual representation between physical constraints (springs, length constraints, etc). Cables can also dynamically be shaken or broken by level events.

Placement

Cables are strewn through a level using the move_rope and keyframe_rope entities. First, place a move_rope entity at one desired anchor point for the rope. Next, place a keyframe_rope at the second anchor point. Point the "Next Keyframe" field on the move_rope to the keyframe_rope entity. You'll now see a line representing an estimation of how the cable will lie between the two points (See Fig 1a). Cloning the keyframe_rope entity will automatically rename the new entity and point the entity that was cloned from to that new entity. Using this method you can quickly lay out cables through multiple points (like power lines).

Fig 1a. - A cable strewn between two points in Hammer

Appearance

Cables have a certain amount of "slack", which is the amount of bend they have while resting between their two anchor points. Slack helps give the cables a greater sense of motion and believability. The value entered into the entity field dictates how much "extra" cable there is between the two anchor points. This is equivalent to stretching the cable directly between the two points, then adding the specified number of units to that length. As the cable moves, the slack is not recalculated, so a cable that initially droops due to slack will become taut if one of the end points moves away from the other. Likewise, a taut cable will begin to droop if its end points move closer together. The line representing the estimated lie of the cable in Hammer will update itself based on the values entered, and may be used as a guide for how the cable will look when seen in the engine.

Behavior

Cable anchor points may be placed in hierarchy with other objects, and will move along with those entities. In the sample map provided, a moving door provides a dynamic anchor point for two cables. As the door moves, the cables stretch and move to maintain their span. This can be a very effective visual tool for adding movement and polish to simple moving pieces in the world.

It is possible to detach cables from their anchor points, either by a player's direct action or by triggering it to do so. When a cable receives a "Break" input, it will detach itself from the anchor point which received the input. A cable will also detach itself from an anchor point if that point is parented via hierarchy to an entity which is killed. In the sample map provided, the tattered pole on the left-most side of the map can be broken by damaging it. When it breaks, the cable attached to it will fall to the ground.

By default, cables are not solid and will pass through world geometry. In some cases (especially when cables are broken), this can be visually unacceptable. By using the "Collide With World" setting on the entity, the cable can be made to collide with world geometry. Because this makes the cable more expensive, this setting is only recommended for cables that exhibit the problem of interpenetrating the world.

Sample Map

sdk_cables.vmf