Skip to content

Commit

Permalink
Init project
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanMurzak committed Nov 12, 2021
1 parent e9f11bb commit bcb3968
Show file tree
Hide file tree
Showing 443 changed files with 16,762 additions and 0 deletions.
82 changes: 82 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/_[Bb]uild/
/[Bb]uilds/
/_[Bb]uilds/
/[Ll]ogs/
/[Mm]emoryCaptures/
/[Ss]erverData/

# Asset meta data should only be ignored when the corresponding asset is also ignored
!/[Aa]ssets/**/*.meta

# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*

# Autogenerated Jetbrains Rider plugin
[Aa]ssets/Plugins/Editor/JetBrains*

# Visual Studio cache directory
.vs/

# Gradle cache directory
.gradle/

# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
*.consulo/
*.csproj
*.csproj.meta
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db

# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta

# Unity3D generated file on crash reports
sysinfo.txt

# Builds
*.apk
*.apk.meta
*.aab.meta
*.unitypackage
*.unitypackage.meta

*/AndroidLogcatSettings.asset
/Assets/StreamingAssets

# Crashlytics generated file
crashlytics-build.properties

# ODIN Ignore the auto-generated AOT compatibility dll.
/Assets/Plugins/Sirenix/Assemblies/AOT/*

# ODIN Ignore all unpacked demos.
/Assets/Plugins/Sirenix/Demos/*


# ODIN plugin
/Assets/Plugins/Sirenix**

# Appodeal
/Assets/Appodeal/**
6 changes: 6 additions & 0 deletions .vsconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": "1.0",
"components": [
"Microsoft.VisualStudio.Workload.ManagedGame"
]
}
8 changes: 8 additions & 0 deletions Assets/Appodeal-Simplifier.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Appodeal-Simplifier/Editor.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
using System.IO;
using UnityEditor;
using UnityEngine;

namespace AppodealSimplifier
{
public static class ExtensionAppodealIniterConfigMenu
{
[InitializeOnLoadMethod]
public static void Init()
{
GetOrCreateConfig();
}

[MenuItem("Edit/Appodeal-Simplifier Settings...", false, 250)]
public static void OpenOrCreateConfig()
{
var config = GetOrCreateConfig();

EditorUtility.FocusProjectWindow();
EditorWindow inspectorWindow = EditorWindow.GetWindow(typeof(UnityEditor.Editor).Assembly.GetType("UnityEditor.InspectorWindow"));
inspectorWindow.Focus();

Selection.activeObject = config;
}

public static AppodealSimplifierConfig GetOrCreateConfig()
{
var config = Resources.Load<AppodealSimplifierConfig>(AppodealSimplifierConfig.PATH_FOR_RESOURCES_LOAD);

if (config)
{
return config;
}

config = ScriptableObject.CreateInstance<AppodealSimplifierConfig>();

string directory = Path.GetDirectoryName(AppodealSimplifierConfig.PATH);
if (!Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}

AssetDatabase.CreateAsset(config, AppodealSimplifierConfig.PATH);
AssetDatabase.SaveAssets();

return config;
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Appodeal-Simplifier/Editor/Gizmos.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Appodeal-Simplifier/Scripts.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bcb3968

Please sign in to comment.