Merge branch 'main' into dev

This commit is contained in:
Mikhail 2024-08-12 09:51:30 +08:00
commit 313fc53fd5
3 changed files with 9 additions and 9 deletions

View File

@ -27,7 +27,7 @@
<td nowrap width="100"> <td nowrap width="100">
<a href="https://github.com/DCFApixels/DragonECS"> <a href="https://github.com/DCFApixels/DragonECS">
<img src="https://github.com/user-attachments/assets/30528cb5-f38e-49f0-b23e-d001844ae930"></br> <img src="https://github.com/user-attachments/assets/30528cb5-f38e-49f0-b23e-d001844ae930"></br>
<span>English(WIP)</span> <span>English</span>
</a> </a>
</td> </td>
<td nowrap width="100"> <td nowrap width="100">
@ -856,7 +856,7 @@ public struct WorldComponent : IEcsWorldComponent<WorldComponent>
</br> </br>
# Проекты на DragonECS # Проекты на DragonECS
* [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS) * [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS-Demo)
![alt text](https://i.ibb.co/hm7Lrm4/Platformer.png) ![alt text](https://i.ibb.co/hm7Lrm4/Platformer.png)
</br> </br>

View File

@ -27,7 +27,7 @@
<td nowrap width="100"> <td nowrap width="100">
<a href="https://github.com/DCFApixels/DragonECS"> <a href="https://github.com/DCFApixels/DragonECS">
<img src="https://github.com/user-attachments/assets/30528cb5-f38e-49f0-b23e-d001844ae930"></br> <img src="https://github.com/user-attachments/assets/30528cb5-f38e-49f0-b23e-d001844ae930"></br>
<span>English(WIP)</span> <span>English</span>
</a> </a>
</td> </td>
<td nowrap width="100"> <td nowrap width="100">
@ -860,7 +860,7 @@ public struct WorldComponent : IEcsWorldComponent<WorldComponent>
</br> </br>
# 使用DragonECS的项目 # 使用DragonECS的项目
* [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS) * [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS-Demo)
![alt text](https://i.ibb.co/hm7Lrm4/Platformer.png) ![alt text](https://i.ibb.co/hm7Lrm4/Platformer.png)
</br> </br>

View File

@ -29,7 +29,7 @@
<td nowrap width="100"> <td nowrap width="100">
<a href="https://github.com/DCFApixels/DragonECS"> <a href="https://github.com/DCFApixels/DragonECS">
<img src="https://github.com/user-attachments/assets/3c699094-f8e6-471d-a7c1-6d2e9530e721"></br> <img src="https://github.com/user-attachments/assets/3c699094-f8e6-471d-a7c1-6d2e9530e721"></br>
<span>English(WIP)</span> <span>English</span>
</a> </a>
</td> </td>
<td nowrap width="100"> <td nowrap width="100">
@ -863,7 +863,7 @@ public struct WorldComponent : IEcsWorldComponent<WorldComponent>
</br> </br>
# Projects powered by DragonECS # Projects powered by DragonECS
* [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS) * [3D Platformer (Example)](https://github.com/DCFApixels/3D-Platformer-DragonECS-Demo)
</br> </br>
@ -881,11 +881,11 @@ public struct WorldComponent : IEcsWorldComponent<WorldComponent>
# FAQ # FAQ
## 'ReadOnlySpan<>' could not be found ## 'ReadOnlySpan<>' could not be found
В версии Unity 2020.1.х в консоли может выпадать ошибка: In Unity 2020.1.x, you may encounter this error in the console:
``` ```
The type or namespace name 'ReadOnlySpan<>' could not be found (are you missing a using directive or an assembly reference?) The type or namespace name 'ReadOnlySpan<>' could not be found (are you missing a using directive or an assembly reference?)
``` ```
Чтобы починить добавьте директиву `ENABLE_DUMMY_SPAN` в `Project Settings/Player/Other Settings/Scripting Define Symbols`. To fix this, add the define symbol `ENABLE_DUMMY_SPAN` to `Project Settings/Player/Other Settings/Scripting Define Symbols`.
</br> </br>