This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
modtainers
/
Svelto.ECS
mirror of
https://github.com/sebas77/Svelto.ECS
Watch
4
Star
0
Fork
0
Code
Issues
0
Releases
49
Wiki
Activity
Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
433
Commits
4
Branches
3.7MB
Tree:
3092fc5570
UPM
master
sebas77-patch-1
sebas77-patch-2
3.5.2
3.5.1
3.5.0-pre
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.6
3.2.5
3.2.4
3.2.2
3.2.1
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.9.12
2.9.11
2.9.10
2.9.9
2.9.8
2.9.7
2.9.6
2.9.5
2.9.4
2.9.3
2.9.2
2.9.1
2.8
2.7
2.6a
Rel25b
Rel25a
Rel2.8
Rel2
Rel2b2
Rel2b
Rel1
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '3092fc5570'
${ noResults }
Svelto.ECS
/
Core
/
EntitySubmitOperation.cs
EntitySubmitOperation.cs
143B
Raw
Normal View
History
UPM package version 3.3.0
2 years ago
introduced deffered actions for Remove and Swap entity, they now happen during the submission and not right away. This imply a radical change of the current application made with Svelto
6 years ago
UPM package version 3.3.0
2 years ago
introduced deffered actions for Remove and Swap entity, they now happen during the submission and not right away. This imply a radical change of the current application made with Svelto
6 years ago
UPM package version 3.0.0
4 years ago
UPM package version 3.3.0
2 years ago
introduced deffered actions for Remove and Swap entity, they now happen during the submission and not right away. This imply a radical change of the current application made with Svelto
6 years ago
1
2
3
4
5
6
7
8
9
10
namespace Svelto.ECS
{
enum EntitySubmitOperationType
{
Swap,
Remove,
RemoveGroup,
SwapGroup
}
}