Change TaskGraphSystem ordering
This commit is contained in:
@@ -9,7 +9,7 @@ namespace
|
||||
{
|
||||
bool SortTaskGraphSystem(TaskGraphSystem* const& a, TaskGraphSystem* const& b)
|
||||
{
|
||||
return b->Order < a->Order;
|
||||
return b->Order > a->Order;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ private:
|
||||
|
||||
public:
|
||||
/// <summary>
|
||||
/// The execution order of the system (systems with higher order are executed earlier).
|
||||
/// The execution order of the system (systems with higher order are executed later, lower first).
|
||||
/// </summary>
|
||||
API_FIELD() int32 Order = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user