Unity Package Structure
This commit is contained in:
parent
f84502ceb4
commit
36ec79c262
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "Syntriax.Modules.Movement.Editor",
|
||||||
|
"rootNamespace": "",
|
||||||
|
"references": [
|
||||||
|
"GUID:d4c952ed5f59c5a449cda1b0080ed841",
|
||||||
|
"GUID:efa9a9bc94c60c74684aafb7428fbf61",
|
||||||
|
"GUID:c967acc4be781ca44b42a1887eb1ac7a"
|
||||||
|
],
|
||||||
|
"includePlatforms": [
|
||||||
|
"Editor"
|
||||||
|
],
|
||||||
|
"excludePlatforms": [],
|
||||||
|
"allowUnsafeCode": false,
|
||||||
|
"overrideReferences": false,
|
||||||
|
"precompiledReferences": [],
|
||||||
|
"autoReferenced": true,
|
||||||
|
"defineConstraints": [],
|
||||||
|
"versionDefines": [],
|
||||||
|
"noEngineReferences": false
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9cf72248c45dc1749bdfa757cd33e109
|
||||||
|
AssemblyDefinitionImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 265853a3d06f03c4b9b926b0bc411285
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -13,8 +13,8 @@ namespace Syntriax.Modules.Movement.Config
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public class MovementDefinitionFactory : FactoryBase
|
public class MovementDefinitionFactory : FactoryBase
|
||||||
{
|
{
|
||||||
internal const int InitialCapacity = 64;
|
public const int InitialCapacity = 64;
|
||||||
internal const string ResourceDirectoryToDefinitions = "Modules/Syntriax/Movement/Definitions/";
|
public const string ResourceDirectoryToDefinitions = "Modules/Syntriax/Movement/Definitions/";
|
||||||
|
|
||||||
private Dictionary<string, MovementDefinition> _definitions = null;
|
private Dictionary<string, MovementDefinition> _definitions = null;
|
||||||
public Dictionary<string, MovementDefinition> Definitions
|
public Dictionary<string, MovementDefinition> Definitions
|
|
@ -1,9 +1,15 @@
|
||||||
{
|
{
|
||||||
"name": "com.syntriax.movement",
|
"name": "com.syntriax.movement",
|
||||||
"version": "1.0.0",
|
"version": "0.1.0",
|
||||||
"displayName": "Movement Module",
|
"displayName": "Movement Module",
|
||||||
"description": "Dependends On:\n https://git.syntriax.com/Syntriax/ToggleState.git\nhttps://git.syntriax.com/Syntriax/Trigger.git\nhttps://git.syntriax.com/Syntriax/Factory.git",
|
"description": "Dependends On:\n https://git.syntriax.com/Syntriax/ToggleState.git\nhttps://git.syntriax.com/Syntriax/Trigger.git\nhttps://git.syntriax.com/Syntriax/Factory.git",
|
||||||
"unity": "2019.1",
|
"unity": "2019.1",
|
||||||
|
"documentationUrl": "https://git.syntriax.com/Syntriax/Movement.git",
|
||||||
|
"dependencies": {
|
||||||
|
"com.syntriax.toggle-state": "0.x.x",
|
||||||
|
"com.syntriax.trigger": "0.x.x",
|
||||||
|
"com.syntriax.factory": "0.x.x"
|
||||||
|
},
|
||||||
"keywords": ["Movement"],
|
"keywords": ["Movement"],
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Syntriax",
|
"name": "Syntriax",
|
||||||
|
|
Loading…
Reference in New Issue