Skip to content

Commit

Permalink
1. refactoer codes using Assembly definition
Browse files Browse the repository at this point in the history
2. fix: IDIContext cannot handler private inheritation injection
3. remove active record as data gateway
4. add basic inventory impletation
  • Loading branch information
lyt0628 committed Nov 23, 2024
1 parent 1969f33 commit 7ecb2c4
Show file tree
Hide file tree
Showing 333 changed files with 6,876 additions and 2,584 deletions.
2 changes: 1 addition & 1 deletion src/.vs/Assembly-CSharp-Editor.csproj.dtbcache.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/.vs/Assembly-CSharp.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/GamLibDI.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/GameLibDITest.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/IntegrationTest.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QS.Api.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QS.Domain.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QS.GameLib.DI.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QS.GameLib.Pattern.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QS.GameLib.Util.csproj.dtbcache.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/.vs/QSPorject.csproj.dtbcache.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/.vs/Tests.csproj.dtbcache.json

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1,885 changes: 1,776 additions & 109 deletions src/.vs/src/v17/DocumentLayout.backup.json

Large diffs are not rendered by default.

1,886 changes: 1,772 additions & 114 deletions src/.vs/src/v17/DocumentLayout.json

Large diffs are not rendered by default.

Binary file modified src/.vs/src/v17/HierarchyCache.v1.txt
Binary file not shown.
5 changes: 1 addition & 4 deletions src/Assets/Editor/MyModelPostprocessor.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

public class MyModelPostprocessor : AssetPostprocessor
{
Expand All @@ -11,7 +8,7 @@ public class MyModelPostprocessor : AssetPostprocessor
*/
private void OnPreprocessModel()
{
ModelImporter importer = (ModelImporter) assetImporter;
ModelImporter importer = (ModelImporter)assetImporter;
importer.materialImportMode = ModelImporterMaterialImportMode.None;
}

Expand Down
Loading

0 comments on commit 7ecb2c4

Please sign in to comment.