-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Decoding of msgpack type values into json - Add basic example BP in Plugin contents - Add basic MQTT example in Example project - json bpu dependency - include nlohmann json package - include Snowtrack ignore file for alternate VC
- Loading branch information
Showing
30 changed files
with
25,905 additions
and
0 deletions.
There are no files selected for viewing
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,22 @@ | ||
# UE file types | ||
*.uproject filter=lfs diff=lfs merge=lfs -text | ||
*.uasset filter=lfs diff=lfs merge=lfs -text | ||
*.umap filter=lfs diff=lfs merge=lfs -text | ||
# Raw Content types | ||
*.fbx filter=lfs diff=lfs merge=lfs -text | ||
*.obj filter=lfs diff=lfs merge=lfs -text | ||
*.glb filter=lfs diff=lfs merge=lfs -text | ||
*.gltf filter=lfs diff=lfs merge=lfs -text | ||
*.3ds filter=lfs diff=lfs merge=lfs -text | ||
*.psd filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.mp3 filter=lfs diff=lfs merge=lfs -text | ||
*.wav filter=lfs diff=lfs merge=lfs -text | ||
*.xcf filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.st filter=lfs diff=lfs merge=lfs -text | ||
*.tga filter=lfs diff=lfs merge=lfs -text | ||
*.db filter=lfs diff=lfs merge=lfs -text | ||
# Anything in `/RawContent` dir. | ||
/RawContent/**/* filter=lfs diff=lfs merge=lfs -text |
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,79 @@ | ||
# Prevent different SC's conflicting with each other (Git vs Snowtrack) | ||
# Do not remove this line | ||
.snow | ||
|
||
_renom/ | ||
|
||
# Visual Studio user settings files that should be ignored. | ||
.vs/ | ||
.vscode/ | ||
*.vcxproj | ||
|
||
# Visual Studio user settings files that should be ignored. | ||
# And Unreal Engine directories | ||
Saved/ | ||
Build/ | ||
Binaries/ | ||
Intermediate/ | ||
DerivedDataCache/ | ||
FileOpenOrder/ | ||
Developers/ | ||
|
||
*.pdb | ||
*-Debug.* | ||
*.tmp | ||
*.VC.db | ||
*.opensdf | ||
*.opendb | ||
*.sdf | ||
*.sln | ||
*.suo | ||
*.swp | ||
|
||
*.xcodeproj | ||
*.xcworkspace | ||
|
||
|
||
|
||
# Ignore all files by default, but scan all directories. | ||
# * | ||
# !*/ | ||
|
||
# Do not ignore git files in the root of the repo. | ||
# !/.git* | ||
|
||
# Do not ignore current project's `.uproject`. | ||
# !/*.uproject | ||
|
||
# Do not ignore source, config and plugins dirs. | ||
# !/Source/** | ||
# !/Config/** | ||
# !/Plugins/** | ||
|
||
|
||
# Only allow .uasset and .umap files from /Content dir. | ||
# They're tracked by git-lfs, don't forget to track other | ||
# files if adding them here. | ||
# !/Content/**/*.uasset | ||
# !/Content/**/*.umap | ||
|
||
|
||
# Allow any files from /RawContent dir. | ||
# Any file in /RawContent dir will be managed by git lfs. | ||
!/RawContent/**/* | ||
|
||
# OS/platform generated files. | ||
|
||
# Windows | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Mac OS X | ||
.DS_Store | ||
.DS_Store? | ||
.AppleDouble | ||
.LSOverride | ||
._* | ||
BouchEnvironment/Content/StarterContent | ||
.p4ignore.txt | ||
Builds |
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,10 @@ | ||
.git | ||
.snow | ||
.vscode | ||
Content | ||
DerivedDataCache | ||
Intermediate | ||
Platforms | ||
Saved | ||
Plugins/msgpack4ue/Content | ||
Plugins/msgpack4ue/Intermediate |
Oops, something went wrong.