Compare commits

..

No commits in common. "main" and "0.5.24" have entirely different histories.
main ... 0.5.24

5 changed files with 10 additions and 10 deletions

View File

@ -68,7 +68,7 @@
Семантика версионирования - [Открыть](https://gist.github.com/DCFApixels/af79284955bf40e9476cdcac79d7b098#file-dcfapixels_versioning-md)
## Окружение
Обязательные требования:
+ Зависимость: [DragonECS](https://github.com/DCFApixels/DragonECS) `[1.0.0]`;
+ Зависимость: [DragonECS](https://github.com/DCFApixels/DragonECS)
+ Минимальная версия C# 8.0;
+ Минимальная версия Unity 2021.2.0;

View File

@ -68,7 +68,7 @@ Versioning semantics - [Open](https://gist.github.com/DCFApixels/af79284955bf40e
## Environment
Requirements:
- Dependency: [DragonECS](https://github.com/DCFApixels/DragonECS) `[1.0.0]`;
- Dependency: [DragonECS](https://github.com/DCFApixels/DragonECS)
- Minimum C# version: 8.0
- Minimum Unity version: 2021.2.0

View File

@ -8,7 +8,7 @@
"displayName": "DragonECS-Unity",
"description": "Integration with Unity for DragonECS",
"unity": "2021.2",
"version": "0.6.0",
"version": "0.5.24",
"repository": {
"type": "git",
"url": "https://github.com/DCFApixels/DragonECS-Unity.git"

View File

@ -6,14 +6,14 @@ namespace DCFApixels.DragonECS.Unity.Editors
{
internal enum RuntimeDrawMode
{
Lazy = 0,
Live = 1,
Lazy,
Live,
}
internal enum MetaBlockRectStyle
{
Clean = 0,
Edge = 1,
Fill = 2,
Clean,
Edge,
Fill,
}
internal enum MetaBlockColorMode
{
@ -126,7 +126,7 @@ namespace DCFApixels.DragonECS.Unity.Editors
[SerializeField]
private MetaBlockRectStyle _metaBlockRectStyle = MetaBlockRectStyle.Fill;
private MetaBlockRectStyle _metaBlockRectStyle = MetaBlockRectStyle.Edge;
public MetaBlockRectStyle MetaBlockRectStyle
{
get => _metaBlockRectStyle;

View File

@ -187,7 +187,7 @@ namespace DCFApixels.DragonECS
public sealed override void SetRaw(object raw) { component = (T)raw; }
protected virtual T CloneComponent(T component)
{
#if UNITY_EDITOR
#if DEBUG
switch (_defaultValueCloneMethod)
{
case CloneMethod.Set: