Commit 9f1c947 1 parent 373e2e1 commit 9f1c947 Copy full SHA for 9f1c947
File tree 4 files changed +119
-0
lines changed
4 files changed +119
-0
lines changed Original file line number Diff line number Diff line change
1
+ Games /
2
+ Unity /DumpStr /
3
+ DumpLog /
4
+ TempCode /
5
+ # 暂时忽略这个项目
6
+ BombMan /
7
+ # Build and Object Folders
8
+ bin /
9
+ obj /
10
+ # 数据库文件不提交
11
+ * .db
12
+ # Nuget packages directory
13
+ packages /
14
+ # ide
15
+ .idea /
16
+ .vs /
17
+ # # Ignore Visual Studio temporary files, build results, and
18
+ # # files generated by popular Visual Studio add-ons.
19
+
20
+ # User-specific files
21
+ * .suo
22
+ * .user
23
+ * .sln.docstates
24
+
25
+ # Build results
26
+ [Dd ]ebug /
27
+ [Rr ]elease /
28
+ x64 /
29
+ * _i.c
30
+ * _p.c
31
+ * .ilk
32
+ * .obj
33
+ * .pch
34
+ * .pdb
35
+ * .pgc
36
+ * .pgd
37
+ * .rsp
38
+ * .sbr
39
+ * .tlb
40
+ * .tli
41
+ * .tlh
42
+ * .tmp
43
+ * .log
44
+ * .vspscc
45
+ * .vssscc
46
+ .builds
47
+
48
+ # Visual C++ cache files
49
+ ipch /
50
+ * .aps
51
+ * .ncb
52
+ * .opensdf
53
+ * .sdf
54
+
55
+ # Visual Studio profiler
56
+ * .psess
57
+ * .vsp
58
+ * .vspx
59
+
60
+ # Guidance Automation Toolkit
61
+ * .gpState
62
+
63
+ # ReSharper is a .NET coding add-in
64
+ _ReSharper *
65
+
66
+ # NCrunch
67
+ * .ncrunch *
68
+ . * crunch * .local.xml
69
+
70
+ # Installshield output folder
71
+ [Ee ]xpress
72
+
73
+ # DocProject is a documentation generator add-in
74
+ DocProject /buildhelp /
75
+ DocProject /Help
76
+ UpgradeLog * .XML
77
+
78
+ # Lightswitch
79
+ _Pvt_Extensions
80
+ GeneratedArtifacts
81
+ * .xap
82
+ ModelManifest.xml
83
+
84
+ # Backup file
85
+ * .bak
Original file line number Diff line number Diff line change
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+ <PropertyGroup >
3
+ <TargetFramework >netcoreapp2.2</TargetFramework >
4
+ <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
5
+ <LangVersion >latest</LangVersion >
6
+ </PropertyGroup >
7
+ <ItemDefinitionGroup >
8
+ <Reference >
9
+ <Private >False</Private >
10
+ </Reference >
11
+ </ItemDefinitionGroup >
12
+ <PropertyGroup >
13
+ <AppendTargetFrameworkToOutputPath >false</AppendTargetFrameworkToOutputPath >
14
+ </PropertyGroup >
15
+ <PropertyGroup Condition =" '$(Configuration)' == 'Debug' " >
16
+ <OutputPath >../../bin/</OutputPath >
17
+ <DefineConstants >TRACE;DEBUG;NETCOREAPP;NETCOREAPP2_2;DEBUG;NETCOREAPP;NETCOREAPP2_2</DefineConstants >
18
+ </PropertyGroup >
19
+ <PropertyGroup Condition =" '$(Configuration)' == 'Release' " >
20
+ <OutputPath >../../bin/</OutputPath >
21
+ </PropertyGroup >
22
+ <ItemGroup >
23
+ <Content Include =" Src\.DS_Store" />
24
+ </ItemGroup >
25
+ </Project >
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ Demo's link: [https://github.com/JiepengTan/LockstepEngine_ARPGDemo][17]
24
24
25
25
Setup Video link: [ https://www.bilibili.com/video/av64460304/ ] [ 15 ]
26
26
27
+ #### ** QQ 群:**
28
+ - 帧同步技术交流 839944367
29
+ - 渔夫游戏开发教程(帧同步 ECS shader 框架 碰撞检测) 860820019
27
30
28
31
[ 1 ] : https://github.com/proepkes/UnityLockstep
29
32
[ 2 ] : https://github.com/RevenantX/LiteNetLib
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ clear
3
+ dir=" $( cd $( dirname ${BASH_SOURCE[0]} ) && pwd) "
4
+ cd $dir
5
+
6
+ find ./LockstepEngine/ -name ' *.meta' -type f | xargs rm -f
You can’t perform that action at this time.
0 commit comments