Compare commits

...

4 Commits
0.5.24 ... main

Author SHA1 Message Date
Mikhail
8e38cecf19 up version 0.6.0 2026-04-21 15:19:36 +08:00
Mikhail
da16b02fe9 up version 0.5.25 2026-04-20 21:50:23 +08:00
Mikhail
1efdce2c70 fix 2026-04-20 21:38:06 +08:00
Mikhail
dd1748efaa fix 2026-04-20 21:09:15 +08:00
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) Семантика версионирования - [Открыть](https://gist.github.com/DCFApixels/af79284955bf40e9476cdcac79d7b098#file-dcfapixels_versioning-md)
## Окружение ## Окружение
Обязательные требования: Обязательные требования:
+ Зависимость: [DragonECS](https://github.com/DCFApixels/DragonECS) + Зависимость: [DragonECS](https://github.com/DCFApixels/DragonECS) `[1.0.0]`;
+ Минимальная версия C# 8.0; + Минимальная версия C# 8.0;
+ Минимальная версия Unity 2021.2.0; + Минимальная версия Unity 2021.2.0;

View File

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

View File

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

View File

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

View File

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