This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
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.
- Loading branch information
0 parents
commit a7128a3
Showing
1,190 changed files
with
59,872 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,73 @@ | ||
--- | ||
BasedOnStyle: Microsoft | ||
AccessModifierOffset: '-4' | ||
AlignConsecutiveMacros: 'false' | ||
AlignConsecutiveAssignments: 'false' | ||
AlignConsecutiveDeclarations: 'false' | ||
AlignEscapedNewlines: Left | ||
AlignTrailingComments: 'false' | ||
AllowAllArgumentsOnNextLine: 'false' | ||
AllowAllConstructorInitializersOnNextLine: 'false' | ||
AllowAllParametersOfDeclarationOnNextLine: 'false' | ||
AllowShortBlocksOnASingleLine: 'true' | ||
AllowShortCaseLabelsOnASingleLine: 'false' | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLambdasOnASingleLine: Inline | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: 'false' | ||
AlwaysBreakTemplateDeclarations: 'Yes' | ||
BinPackArguments: 'true' | ||
BinPackParameters: 'true' | ||
BraceWrapping: | ||
AfterCaseLabel: 'true' | ||
AfterClass: 'true' | ||
AfterControlStatement: 'true' | ||
AfterEnum: 'true' | ||
AfterFunction: 'true' | ||
AfterNamespace: 'true' | ||
AfterObjCDeclaration: 'true' | ||
AfterStruct: 'true' | ||
AfterUnion: 'true' | ||
AfterExternBlock: 'true' | ||
BeforeCatch: 'true' | ||
BeforeElse: 'true' | ||
IndentBraces: 'false' | ||
SplitEmptyFunction: 'false' | ||
SplitEmptyRecord: 'false' | ||
SplitEmptyNamespace: 'false' | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Custom | ||
BreakConstructorInitializers: BeforeColon | ||
CompactNamespaces: 'false' | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' | ||
Cpp11BracedListStyle: 'true' | ||
DerivePointerAlignment: 'false' | ||
IncludeBlocks: Preserve | ||
IndentCaseLabels: 'true' | ||
IndentPPDirectives: BeforeHash | ||
IndentWidth: '4' | ||
IndentWrappedFunctionNames: 'true' | ||
KeepEmptyLinesAtTheStartOfBlocks: 'false' | ||
NamespaceIndentation: All | ||
PointerAlignment: Left | ||
SortIncludes: 'true' | ||
SpaceAfterCStyleCast: 'true' | ||
SpaceAfterLogicalNot: 'false' | ||
SpaceAfterTemplateKeyword: 'false' | ||
SpaceBeforeAssignmentOperators: 'true' | ||
SpaceBeforeCpp11BracedList: 'true' | ||
SpaceBeforeInheritanceColon: 'true' | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: 'true' | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesInAngles: 'false' | ||
SpacesInCStyleCastParentheses: 'false' | ||
SpacesInContainerLiterals: 'false' | ||
SpacesInParentheses: 'false' | ||
SpacesInSquareBrackets: 'false' | ||
Standard: Cpp11 | ||
TabWidth: '4' | ||
UseTab: ForContinuationAndIndentation | ||
|
||
... |
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,93 @@ | ||
# Visual Studio 2015 user specific files | ||
.vs/ | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.ipa | ||
|
||
# Whitelist convert.exe as its documentation tooling we want to include | ||
!convert.exe | ||
|
||
# These project files can be generated by the engine | ||
*.xcodeproj | ||
*.xcworkspace | ||
*.sln | ||
*.suo | ||
*.opensdf | ||
*.sdf | ||
*.VC.db | ||
*.VC.opendb | ||
|
||
# Precompiled Assets | ||
SourceArt/**/*.png | ||
SourceArt/**/*.tga | ||
|
||
# Binary Files | ||
Binaries/* | ||
Plugins/*/Binaries/* | ||
|
||
# Builds | ||
Build/* | ||
|
||
# Whitelist PakBlacklist-<BuildConfiguration>.txt files | ||
!Build/*/ | ||
Build/*/** | ||
!Build/*/PakBlacklist*.txt | ||
|
||
# Don't ignore icon files in Build | ||
!Build/**/*.ico | ||
|
||
# Built data for maps | ||
*_BuiltData.uasset | ||
|
||
# Configuration files generated by the Editor | ||
Saved/* | ||
|
||
# Compiled source files for the engine to use | ||
Intermediate/* | ||
Plugins/*/Intermediate/* | ||
|
||
# Cache files for the editor to use | ||
DerivedDataCache/* | ||
|
||
# Intermediate files for MakeRelease | ||
MakeRelease/bin/* | ||
MakeRelease/obj/* | ||
|
||
# Whitelist MakeRelease project solution | ||
!MakeRelease/*.sln | ||
|
||
# Don't include doxygen intermediate files | ||
Doc/latex/* | ||
|
||
# Don't include generated documentation | ||
# Doc/GettingStarted.pdf !!! THIS SHOULD BE ADDED BACK | ||
|
||
|
||
Source/Platforms/* |
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,2 @@ | ||
[CoreRedirects] | ||
+PackageRedirects=(OldName="Modio",NewName="/ModioLegacyUI/",MatchSubstring=true) |
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,8 @@ | ||
[FilterPlugin] | ||
; This section lists additional files which will be packaged along with your plugin. Paths should be listed relative to the root plugin directory, and | ||
; may include "...", "*", and "?" wildcards to match directories, files, and individual characters respectively. | ||
; | ||
; Examples: | ||
; /README.txt | ||
; /Extras/... | ||
; /Binaries/ThirdParty/*.dll |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+8.31 MB
Content/UI5/Default/Fonts/ModioSans/ChineseSimplified/modioSans_SC_Bold.uasset
Binary file not shown.
Binary file added
BIN
+8.09 MB
Content/UI5/Default/Fonts/ModioSans/ChineseSimplified/modioSans_SC_Regular.uasset
Binary file not shown.
Binary file added
BIN
+5.67 MB
Content/UI5/Default/Fonts/ModioSans/ChineseTraditional/modioSans_TC_Bold.uasset
Binary file not shown.
Binary file added
BIN
+5.5 MB
Content/UI5/Default/Fonts/ModioSans/ChineseTraditional/modioSans_TC_Regular.uasset
Binary file not shown.
Binary file added
BIN
+5.46 MB
Content/UI5/Default/Fonts/ModioSans/Japanese/modioSans_JP_Bold.uasset
Binary file not shown.
Binary file added
BIN
+5.47 MB
Content/UI5/Default/Fonts/ModioSans/Japanese/modioSans_JP_Regular.uasset
Binary file not shown.
Binary file added
BIN
+5.46 MB
Content/UI5/Default/Fonts/ModioSans/Japanese/modioSans_JP_SemiBold.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.55 MB
Content/UI5/Default/Fonts/ModioSans/Korean/modioSans_KR_Medium.uasset
Binary file not shown.
Binary file added
BIN
+4.53 MB
Content/UI5/Default/Fonts/ModioSans/Korean/modioSans_KR_Regular.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+121 KB
Content/UI5/Default/Fonts/ModioSans/LatinCyrillic/modio_Regular.uasset
Binary file not shown.
Binary file added
BIN
+150 KB
Content/UI5/Default/Fonts/ModioSans/LatinCyrillic/modio_Regular_Italic.uasset
Binary file not shown.
Binary file added
BIN
+133 KB
Content/UI5/Default/Fonts/ModioSans/LatinCyrillic/modio_SemiBold.uasset
Binary file not shown.
Binary file added
BIN
+136 KB
Content/UI5/Default/Fonts/ModioSans/LatinCyrillic/modio_SemiBold_Italic.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.3 KB
...ent/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Capslock.uasset
Binary file not shown.
Binary file added
BIN
+13.5 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Command.uasset
Binary file not shown.
Binary file added
BIN
+12.7 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Control.uasset
Binary file not shown.
Binary file added
BIN
+13.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Delete.uasset
Binary file not shown.
Binary file added
BIN
+13.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Enter.uasset
Binary file not shown.
Binary file added
BIN
+12.9 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Escape.uasset
Binary file not shown.
Binary file added
BIN
+13.1 KB
...I5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_ForwardDelete.uasset
Binary file not shown.
Binary file added
BIN
+12.4 KB
...ent/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Function.uasset
Binary file not shown.
Binary file added
BIN
+13.5 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Option.uasset
Binary file not shown.
Binary file added
BIN
+13.3 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Return.uasset
Binary file not shown.
Binary file added
BIN
+13.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Shift.uasset
Binary file not shown.
Binary file added
BIN
+12.7 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/Keyboard_Apple_Tab.uasset
Binary file not shown.
Binary file added
BIN
+150 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/AppleSpecific/ModioCommonInput_Apple.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_AngleLeft-Comma.uasset
Binary file not shown.
Binary file added
BIN
+12.1 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_AngleRight-Fullstop.uasset
Binary file not shown.
Binary file added
BIN
+11.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_ArrowDown.uasset
Binary file not shown.
Binary file added
BIN
+11.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_ArrowLeft.uasset
Binary file not shown.
Binary file added
BIN
+11.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_ArrowRight.uasset
Binary file not shown.
Binary file added
BIN
+11.7 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_ArrowUp.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_BracketsLeft.uasset
Binary file not shown.
Binary file added
BIN
+12.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_BracketsRight.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.3 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Colon-Semicolon.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.3 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Delete.uasset
Binary file not shown.
Binary file added
BIN
+12.1 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Dinkus.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+11.5 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Fullstop.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Home.uasset
Binary file not shown.
Binary file added
BIN
+11.4 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Hyphen.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Insert.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+11.3 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Minus.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.4 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_NumLock.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_PageDown.uasset
Binary file not shown.
Binary file added
BIN
+14 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_PageUp.uasset
Binary file not shown.
Binary file added
BIN
+13.4 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Pause.uasset
Binary file not shown.
Binary file added
BIN
+12 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Pipe-Backslash.uasset
Binary file not shown.
Binary file added
BIN
+11.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Plus-Equals.uasset
Binary file not shown.
Binary file added
BIN
+11.5 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Plus.uasset
Binary file not shown.
Binary file added
BIN
+13.7 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Printscreen.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Question-Slash.uasset
Binary file not shown.
Binary file added
BIN
+12.2 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_QuotationMarks.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_ScrollLock.uasset
Binary file not shown.
Binary file added
BIN
+11.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Slash.uasset
Binary file not shown.
Binary file added
BIN
+11.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Space.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.1 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/Keyboard_Tilde-Acute.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.6 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Alt.uasset
Binary file not shown.
Binary file added
BIN
+12.3 KB
...I5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Backspace.uasset
Binary file not shown.
Binary file added
BIN
+13.9 KB
...UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Capslock.uasset
Binary file not shown.
Binary file added
BIN
+13.2 KB
.../UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Control.uasset
Binary file not shown.
Binary file added
BIN
+12.1 KB
...nt/UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Enter.uasset
Binary file not shown.
Binary file added
BIN
+12.5 KB
...ent/UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Menu.uasset
Binary file not shown.
Binary file added
BIN
+13.2 KB
...nt/UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Shift.uasset
Binary file not shown.
Binary file added
BIN
+12.8 KB
Content/UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Tab.uasset
Binary file not shown.
Binary file added
BIN
+12.7 KB
.../UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/Keyboard_Windows_Windows.uasset
Binary file not shown.
Binary file added
BIN
+153 KB
.../UI5/Default/Platform/Input/KeyboardMouse/WindowsSpecific/ModioCommonInput_Windows.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+30.5 KB
Content/UI5/Default/Platform/Input/PlayStation/ModioCommonInput_PlayStation4.uasset
Binary file not shown.
Binary file added
BIN
+30.6 KB
Content/UI5/Default/Platform/Input/PlayStation/ModioCommonInput_PlayStation4_Coloured.uasset
Binary file not shown.
Binary file added
BIN
+30.5 KB
Content/UI5/Default/Platform/Input/PlayStation/ModioCommonInput_PlayStation5.uasset
Binary file not shown.
Binary file added
BIN
+30.6 KB
Content/UI5/Default/Platform/Input/PlayStation/ModioCommonInput_PlayStation5_Coloured.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16 KB
Content/UI5/Default/Platform/Input/PlayStation/PS_Circle_Coloured.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.7 KB
Content/UI5/Default/Platform/Input/PlayStation/PS_Cross_Coloured.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.4 KB
Content/UI5/Default/Platform/Input/PlayStation/PS_Square_Coloured.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.2 KB
Content/UI5/Default/Platform/Input/PlayStation/PS_Triangle_Coloured.uasset
Binary file not shown.
Binary file added
BIN
+31.7 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/ModioCommonInput_Switch.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.8 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_D-Pad_Down.uasset
Binary file not shown.
Binary file added
BIN
+13.8 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_D-Pad_Left.uasset
Binary file not shown.
Binary file added
BIN
+13.8 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_D-Pad_Right.uasset
Binary file not shown.
Binary file added
BIN
+13.8 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_D-Pad_Up.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+24.2 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_LS_Press.uasset
Binary file not shown.
Binary file added
BIN
+13.3 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_Minus.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25.1 KB
Content/UI5/Default/Platform/Input/SwitchSpecific/Switch_RS_Press.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+30.4 KB
Content/UI5/Default/Platform/Input/Xbox/ModioCommonInput_Xbox_Coloured.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.84 KB
Content/UI5/Default/Styles/ActionBar/DefaultActionBarModioLogoStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.58 KB
Content/UI5/Default/Styles/ActionBar/DefaultActionBarTextStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+10 KB
Content/UI5/Default/Styles/Auth/DefaultEmailAuthCodeTextBoxStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.66 KB
Content/UI5/Default/Styles/Auth/Text/DefaultAuthDescriptionTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.59 KB
Content/UI5/Default/Styles/Auth/Text/DefaultAuthTitleTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.19 KB
Content/UI5/Default/Styles/Auth/Text/DefaultAuthValidationTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+7.57 KB
Content/UI5/Default/Styles/Auth/Text/DefaultCodeInputTextBoxStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.49 KB
Content/UI5/Default/Styles/Button/Back/DefaultBackButtonFocusedImageStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.74 KB
Content/UI5/Default/Styles/Button/Back/DefaultBackButtonNormalImageStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.66 KB
Content/UI5/Default/Styles/Button/Back/DefaultPrimaryBackButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+7.89 KB
Content/UI5/Default/Styles/Button/BlackPrimary/DefaultPrimaryBlackButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.02 KB
Content/UI5/Default/Styles/Button/BlackSecondary/DefaultLinkButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+9.5 KB
Content/UI5/Default/Styles/Button/BlackSecondary/DefaultSecondaryBlackButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.59 KB
Content/UI5/Default/Styles/Button/Collection/DefaultCollectionButtonFocusedImageStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.38 KB
Content/UI5/Default/Styles/Button/Collection/DefaultCollectionButtonNormalImageStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.42 KB
Content/UI5/Default/Styles/Button/Collection/DefaultCollectionButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.68 KB
Content/UI5/Default/Styles/Button/DefaultBlackButtonDarkTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.23 KB
Content/UI5/Default/Styles/Button/DefaultBlackButtonLightTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.23 KB
Content/UI5/Default/Styles/Button/DefaultLinkButtonActiveTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.25 KB
Content/UI5/Default/Styles/Button/DefaultLinkButtonInactiveTextStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.22 KB
Content/UI5/Default/Styles/CheckBox/DefaultCheckBoxHoveredTextStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.22 KB
Content/UI5/Default/Styles/Dialog/DefaultDialogDescriptionTextStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.66 KB
Content/UI5/Default/Styles/ErrorWithRetry/DefaultErrorTitleTextBlockStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.99 KB
Content/UI5/Default/Styles/ErrorWithRetry/DefaultErrorWithRetryStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.77 KB
Content/UI5/Default/Styles/ExpandableArea/DefaultExpandableAreaNormalTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.33 KB
Content/UI5/Default/Styles/ExpandableArea/DefaultExpandableAreaSelectedTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.64 KB
Content/UI5/Default/Styles/ExpandableArea/DefaultExpandableAreaStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.71 KB
Content/UI5/Default/Styles/FilteredModList/DefaultFilteredModListTextStyle.uasset
Binary file not shown.
Binary file added
BIN
+7 KB
Content/UI5/Default/Styles/FilteredModList/DefaultFilteredModListViewStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.42 KB
Content/UI5/Default/Styles/Gallery/Button/DefaultModModGalleryPrevNextButtonStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.86 KB
Content/UI5/Default/Styles/Gallery/DefaultModGalleryEntryImageNormalStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.59 KB
Content/UI5/Default/Styles/Gallery/DefaultModGalleryEntryImageSelectedStyle.uasset
Binary file not shown.
Binary file added
BIN
+6.73 KB
Content/UI5/Default/Styles/Gallery/DefaultModGalleryEntryStyle.uasset
Binary file not shown.
Binary file added
BIN
+8.29 KB
Content/UI5/Default/Styles/Gallery/DefaultModGalleryImageStyle.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.