-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from deadlykam/features-a
Features a
- Loading branch information
Showing
46 changed files
with
1,099 additions
and
42 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
...ro/Assets/KamranWali/CodeOptPro/SO_Data/DefaultSettings/DefaultFolderSelectSettings.asset
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
%YAML 1.1 | ||
%TAG !u! tag:unity3d.com,2011: | ||
--- !u!114 &11400000 | ||
MonoBehaviour: | ||
m_ObjectHideFlags: 0 | ||
m_CorrespondingSourceObject: {fileID: 0} | ||
m_PrefabInstance: {fileID: 0} | ||
m_PrefabAsset: {fileID: 0} | ||
m_GameObject: {fileID: 0} | ||
m_Enabled: 1 | ||
m_EditorHideFlags: 0 | ||
m_Script: {fileID: 11500000, guid: 8633442b094ff784aaeae2674bb3918d, type: 3} | ||
m_Name: DefaultFolderSelectSettings | ||
m_EditorClassIdentifier: | ||
_data: [] |
8 changes: 8 additions & 0 deletions
8
...sets/KamranWali/CodeOptPro/SO_Data/DefaultSettings/DefaultFolderSelectSettings.asset.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
CodeOptPro/Assets/KamranWali/CodeOptPro/SO_Data/DefaultSettings/Paths_RequestObject.asset
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
%YAML 1.1 | ||
%TAG !u! tag:unity3d.com,2011: | ||
--- !u!114 &11400000 | ||
MonoBehaviour: | ||
m_ObjectHideFlags: 0 | ||
m_CorrespondingSourceObject: {fileID: 0} | ||
m_PrefabInstance: {fileID: 0} | ||
m_PrefabAsset: {fileID: 0} | ||
m_GameObject: {fileID: 0} | ||
m_Enabled: 1 | ||
m_EditorHideFlags: 0 | ||
m_Script: {fileID: 11500000, guid: bb457a5890f062349bb79df41dc0cf36, type: 3} | ||
m_Name: Paths_RequestObject | ||
m_EditorClassIdentifier: | ||
_paths: | ||
- Assets/KamranWali/CodeOptPro/SO_Data | ||
- Assets/KamranWali/CodeOptPro/SO_Data |
8 changes: 8 additions & 0 deletions
8
...ptPro/Assets/KamranWali/CodeOptPro/SO_Data/DefaultSettings/Paths_RequestObject.asset.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
CodeOptPro/Assets/KamranWali/CodeOptPro/Scripts/CustomClasses.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
CodeOptPro/Assets/KamranWali/CodeOptPro/Scripts/CustomClasses/FolderSelectData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
|
||
namespace KamranWali.CodeOptPro.CustomClasses | ||
{ | ||
[Serializable] | ||
public class FolderSelectData | ||
{ | ||
public string name; | ||
public string path; | ||
|
||
public FolderSelectData(string name, string path) | ||
{ | ||
this.name = name; | ||
this.path = path; | ||
} | ||
|
||
public FolderSelectData() : this("", "") { } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
CodeOptPro/Assets/KamranWali/CodeOptPro/Scripts/CustomClasses/FolderSelectData.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.