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 class for creating larger than life numberslimit is ee16(1 * 10 ^ (1 * 10 ^ 16))
how to use
create a new numberclass
var num: Numberclass = Numberclass.new(1)
numberclass has 2 parameters for its constructor:
mantissa: float = 0
and exponent: float = 0
there is also a from string supports:
- "123"
- "1e2"
- "1e2e3"
has _to_string() for string casts, only outputs in sci notation
has basic math operators like num.add()
most operators have float versions too
(but try not to use them because it creates a new numberclass everytime)
A class for creating larger than life numbers
limit is ee16
(1 * 10 ^ (1 * 10 ^ 16))
Reviews
Quick Information

A class for creating larger than life numberslimit is ee16(1 * 10 ^ (1 * 10 ^ 16))