Skip to content

Commit 9f1c947

Browse files
committed
[*] update readme
1 parent 373e2e1 commit 9f1c947

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed

.gitignore

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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

LockstepEngine.csproj

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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>

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Demo's link: [https://github.com/JiepengTan/LockstepEngine_ARPGDemo][17]
2424

2525
Setup Video link: [https://www.bilibili.com/video/av64460304/][15]
2626

27+
#### **QQ 群:**
28+
- 帧同步技术交流 839944367
29+
- 渔夫游戏开发教程(帧同步 ECS shader 框架 碰撞检测) 860820019
2730

2831
[1]: https://github.com/proepkes/UnityLockstep
2932
[2]: https://github.com/RevenantX/LiteNetLib

RemoveMeta

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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

0 commit comments

Comments
 (0)