Component:AccountMigrationsList

From Resonite Wiki
Revision as of 15:46, 13 October 2024 by 989onan (talk | contribs) (add info based on decompile.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Component image 
Account Migrations List component as seen in the Scene Inspector

Account Migrations List is a component that only works in user space. It checks the current Migrations being ran by the cloud and gives a running count every game update. It shows how many there are total including counts of different statuses the different migrations have.

Usage

Fields
Name Type Description
persistent Bool Determines whether or not this item will be saved to the server.
UpdateOrder Int Controls the order in which this component is updated.
Enabled Bool Controls whether or not this component is enabled.
TotalMigrations Int How many total migrations are currently happening on the cloud right now for the current user.
WaitingMigrations Int How many migrations are currently waiting to start on the cloud right now for the current user.
RunningMigrations Int How many migrations are currently happening on the cloud right now for the current user.
CompletedMigrations Int How many completed migrations have happened on the cloud before for the current user.
MigrationTaskIds direct SyncFieldList`1<String> The task ID's of all the migrations for the current user.

Behavior

Only works in user space. Updates with migrations automatically.

Examples

Possibly used in the migrations tab to show the user what migrations they have done or are doing (CONFIRM?)

See Also