Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

A dynamic catenary node and shader for Godot engine (for hanging chains, ropes etc.)."In physics and geometry, a catenary is the curve that an idealized hanging chain or cable assumes under its own weight when supported only at its ends in a uniform gravitational field"- WikiThe idea came from an excellent tutorial by Alan Zucconi, in which he describes the math behind catenaries. I used these formulas plus some original ideas to implement a new catenary node type in Godot.
godot-catenary
A dynamic catenary node and shader for Godot engine (for hanging chains, ropes etc.).
In physics and geometry, a catenary is the curve that an idealized hanging chain or cable assumes under its own weight when supported only at its ends in a uniform gravitational field
Example of the node in action:
About
The idea came from this excellent tutorial by Alan Zucconi, in which he describes the math behind catenaries. I used these formulas plus some original ideas to implement a new catenary node type in Godot.
Notable improvements are:
- The model will be scaled evenly along the entire curve
- Support for swinging catenaries
- GPU-driven rendering and animations
How to use
This repository contains a demo Godot project in the src folder which will demonstrate the usage of the catenary node. To use the node in your own project, simply Copy these two files:
# scripts/catenary.gd - The GDScript
# shaders/catenary.tres - The shader
The Catenary node acts as the starting point for the curve. The target path points towards another node which will act as the end point of the curve.
The catenary node can be used ingame or in the editor, as it is a tool.
There are a number of parameters to set before the node works:
# The mesh with the rope-like object spanning the x-axis
mesh
# The end point target
target_path
# Whether to track the target node ingame using process
track_target
# The real-world length of the catenary (limited by the distance between the start/end point)
length
# The scale multiplier of the yz-axes of the mesh
width
# The catenary swing angle in radians
swing_angle
# The catenary swing frequency
swing_frequency
The length parameter adjusts the actual length of the cable/rope. If the length is longer than the distance between the start and end point, the curve will sag.
Last words
I hope you find this tool useful. Please raise an issue if you discover a bug or just have general feedback.
A dynamic catenary node and shader for Godot engine (for hanging chains, ropes etc.).
"In physics and geometry, a catenary is the curve that an idealized hanging chain or cable assumes under its own weight when supported only at its ends in a uniform gravitational field"
- Wiki
The idea came from an excellent tutorial by Alan Zucconi, in which he describes the math behind catenaries. I used these formulas plus some original ideas to implement a new catenary node type in Godot.
Reviews
Quick Information

A dynamic catenary node and shader for Godot engine (for hanging chains, ropes etc.)."In physics and geometry, a catenary is the curve that an idealized hanging chain or cable assumes under its own weight when supported only at its ends in a uniform gravitational field"- WikiThe idea came from an excellent tutorial by Alan Zucconi, in which he describes the math behind catenaries. I used these formulas plus some original ideas to implement a new catenary node type in Godot.