Cloud Class
Comments0this wiki
| The information in this article is for Terraria v1.0.6.1. |
| The cloud class is probably one of the least used classes in the game, simply because very few mods would need to care about what the clouds are doing. Nevertheless, there are a variety of methods to adjust how the clouds behave in the game. | ||||
|
|
Properties
Edit
| Name | Type | Description |
|---|---|---|
| position | Vector2 | An object containing the location information about this cloud, including its (X, Y) position. |
| position.X | float | The x-coordinate of the cloud in the world. Note that this is a member of position. |
| position.Y | float | The y-coordinate of the cloud in the world. Note that this is a member of position. |
| scale | float | A multiplier applied to the size of the sprite. A new cloud will have a scale value somewhere between 0.80f and 1.20f times it's normal sprite size. It seems to have an absolute limit of 0.60f to 1.40f, however. |
| rotation | float | How much the cloud's sprite is rotated. Appears to vary between -0.01f and 0.01f for a new cloud, although the absolute ranges are from -0.05f to 0.05f. |
| rSpeed | float | The speed at which the cloud rotates. Value is adjusted every tick, and a typical value here is between -0.0007f and 0.0007f. |
| sSpeed | float | The speed that a cloud changes it's scale size. Used to make it appear "puffier". Ranges between -0.0007f and 0.0007f. |
| active | bool | As there seems to be a hard limit of 100 clouds onscreen at a time, this appears to be a flag indicating whether a particular cloud in the Main.cloud[] array is available to be overwritten with new cloud data. |
| type | int | Which type of cloud it is. There's a total of 4 different sprites, depending. I won't bother listing them here, because hey, they're clouds. |
| width | int | The width of the cloud in pixels. Equal to the sprite's width multiplied by the scale. |
| height | int | The height of the cloud in pixels. Equal to the sprite's height multiplied by the scale. |
Static Properties
Edit
| Name | Type | Description |
|---|---|---|
| rand | Random | Note that this is a private variable, meaning only clouds can reference it. It functions as an internal random object so that clouds behave consistently from one runtime to another. You may or may not be able to interact with it. |
Methods
Edit
| Method Name | Description |
|---|---|
| Clone() |
public object Clone()
{
}
Returns a copy of the instance. This allows you to make changes to the object's data without affecting the original.
|
| Update() |
public void Update()
{
}
Seems to update all of a particular cloud's variables. Not sure when it's invoked, but should be called every tick. You could make a particular cloud update more frequently, but the end result would likely make it move too quickly.
|
Static Methods
Edit
| Method Name | Description |
|---|---|
| addCloud() |
public static void addCloud()
{
}
Adds a new cloud to the Main.cloud[] array, and initializes it with default, randomized values. Does not return a value, so you won't be able to track a particular cloud.
|
| resetClouds() |
public static void resetClouds()
{
}
Sets Main.windSpeed to a randomized value, sets all clouds to inactive (thus disabling them), and then creating a number of clouds equal to Main.numClouds. Basically, a total reset of cloud data.
|
| UpdateClouds() |
public static void UpdateClouds()
{
}
A method designed to call the update value of all the other clouds.
|
Notes
Edit
None yet
| Classes in Terraria |
|---|
|
Chest | Cloud | Collision | Dust | Gore | Item | Lighting | Liquid | Main | NPC | Player | Projectile | Recipe | Sign | Star | WorldGen |

Added by