RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Flowgraph Base ModuleFlowgraph Base NodeFlowgraph Base State NodeFlowgraph Node BuilderFlowgraph GraphFlowgraph Group HelperFlowgraph LinkFlowgraph ManagerNew Node TemplateFlowgraph PinFlowgraph States ManagerFlowgraph UtilsFlowgraph Variable Storage
Directional GravityGet Cloud by IDGet FogGet GravityGet PauseGet PhotomodeGet ScatterSkyGet Time of DayPause GamePlanetRandom Time of DayBullet TimeSet Cloud by ID NodeSet Fog NodeSet Gravity NodeSet ScatterSky NodeSet Time of Day NodeSet Wind NodeSimple Planet Node

UI

Resources

BeamNG Game Engine Lua Cheat SheetGE Developer RecipesMCP Server Setup

// RLS.STUDIOS=true

Premium Mods for BeamNG.drive. Career systems, custom vehicles, and immersive gameplay experiences.

Index

HomeProjectsPatreon

Socials

DiscordPatreon (RLS)Patreon (Vehicles)

© 2026 RLS Studios. All rights reserved.

Modding since 2024

API ReferenceGE Extensionsflowgraphnodesenvironment

Get Cloud by ID

- **File:** `extensions/flowgraph/nodes/environment/getCloud.lua`

Overview

  • File: extensions/flowgraph/nodes/environment/getCloud.lua
  • Name: Get Cloud by ID
  • Category: repeat_instant
  • Description: Retrieves the properties of a specific cloud object by its scene ID.

Pin Schema

Input Pins

NameTypeDescription
objectIdnumberID of the cloud object to query.

Output Pins

NameTypeDescription
coveragenumberHow much of the sky is covered by this cloud.
exposurenumberBrightness scale of the cloud.
windSpeednumberHow fast the cloud texture scrolls.
heightnumberHeight of the cloud in the sky.

Behavior

  • work(): Returns early if no objectId is provided. Otherwise calls core_environment getters (getCloudCoverByID, getCloudExposureByID, getCloudWindByID, getCloudHeightByID) and outputs the values.

Notes

  • Requires a valid cloud object ID from the scene tree.
  • Runs every frame (repeat_instant category).

Tags

#flowgraph #node #ge #environment #cloud #weather


Additional Exports

  • name - string - (see source)

  • icon - string - (see source)

  • description - string - (see source)

  • pinSchema - table - (see source)

  • tags - table - (see source)


See Also

  • Directional Gravity - Related reference
  • Get Fog - Related reference
  • Get Gravity - Related reference
  • FlowGraph Guide - Guide

Directional Gravity

- **File:** `extensions/flowgraph/nodes/environment/directionalGravity.lua`

Get Fog

- **File:** `extensions/flowgraph/nodes/environment/getFogDensity.lua`

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNotesTagsAdditional ExportsSee Also