This commit is contained in:
GoaLitiuM
2021-02-19 18:54:36 +02:00
parent 2107a09ef1
commit 649b8a803c
65 changed files with 13860 additions and 80 deletions

11
Plugins/Cabrito/.gitignore vendored Normal file
View File

@@ -0,0 +1,11 @@
Cabrito.sln
Binaries/*
Cache/*
Logs/*
packages/*
Source/**/*.csproj
Source/**/*.Gen.cs
*.csproj.user
*.suo

View File

@@ -0,0 +1,26 @@
{
"Name": "Cabrito",
"Version": "1.0",
"Company": "My Company",
"Copyright": "",
"GameTarget": "CabritoTarget",
"EditorTarget": "CabritoEditorTarget",
"References": [
{
"Name": "$(EnginePath)/Flax.flaxproj"
}
],
"DefaultSceneSpawn": {
"Position": {
"X": 0.0,
"Y": 0.0,
"Z": 0.0
},
"Direction": {
"X": 0.0,
"Y": 0.0,
"Z": 1.0
}
},
"MinEngineVersion": "0.0.6194"
}

Binary file not shown.

View File

@@ -0,0 +1,13 @@
using Flax.Build;
public class CabritoTarget : GameProjectTarget
{
/// <inheritdoc />
public override void Init()
{
base.Init();
// Reference the modules for game
Modules.Add("Cabrito");
}
}