Install and enable the plugin
Prepare a Windows project and find the Blueprint nodes.
Before you start
Use Unreal Engine 5.8 on Windows with a compatible C++ toolchain when building from source. The current plugin descriptor enables Win64. Android and Linux are not enabled by this revision; installing their SDKs alone does not add support.
Enable Scientific Number Tools
- Close Unreal before installing a source copy. Place the plugin folder under your project’s
Plugins/ScientificNumberTools, withScientificNumberTools.uplugindirectly inside that folder. Keep only one installed copy. - Open the project and build its modules if Unreal requests it.
- Open Edit → Plugins, search for Scientific Number Tools, enable it and restart when prompted.
- Create an Actor Blueprint. In its Event Graph, search for Make Number under Scientific Number.
The Blueprint can place and compile a Make Number node. This plugin provides runtime nodes and components; there is no RowTether review panel to open.
Choose the number policy
Search for Scientific Number Settings in Project Settings. Idle Mode rejects negative numbers and nonzero values below one. Disable it if your game needs those values, then restart the editor. The process policy locks after use; changing the setting during a running session is not sufficient.
C++ consumers
Add ScientificNumberTools to the consuming module’s dependencies for numeric operations. Add ScientificNumberToolsSecurity when using Safe values or portable persistence. Include ScientificNumber.h for FScientificNumber. Runtime code must not depend on the editor module.
The AI connection is optional. Leave it disabled for your first calculation.