Skip to content

Commit dcbfba2

Browse files
committed
init
1 parent 3b774ed commit dcbfba2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2806
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Environment (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Unity Version [e.g. 2021.3.1f1]
29+
- Plugin Version [e.g. 1.2.0]
30+
31+
**Additional context**
32+
Add any other context about the problem here.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin/
2+
obj/
3+
/packages/
4+
riderModule.iml
5+
/_ReSharper.Caches/

CHANGELOG.md

Whitespace-only changes.

CHANGELOG.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Editor.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Editor/EditorExample.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
namespace KoalaGPT.Editor
2+
{
3+
public class EditorExample
4+
{
5+
}
6+
}

Editor/EditorExample.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "KoalaGPT.Editor"
3+
}

Editor/cyberkoalastudios.koalagpt.Editor.asmdef.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

KoalaGPT.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<!-- <ImplicitUsings>enable</ImplicitUsings> -->
6+
<Nullable>enable</Nullable>
7+
<LangVersion>9</LangVersion>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<Content Include=".github\ISSUE_TEMPLATE\bug_report.md" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<Folder Include="Documentation~\" />
16+
<Folder Include="Samples~\" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
21+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
22+
<PackageReference Include="NUnit" Version="3.13.3" />
23+
<PackageReference Include="Unity3D.SDK" Version="2021.1.14.1" />
24+
<PackageReference Include="Unity3D.UnityEngine.UI" Version="2018.3.5.1" />
25+
</ItemGroup>
26+
27+
</Project>

0 commit comments

Comments
 (0)