├── ExampleProject ├── .gitignore ├── CMakeLists.txt ├── Config │ ├── default_aws_resource_mappings.json │ └── shader_global_build_options.json ├── Gem │ ├── CMakeLists.txt │ ├── Include │ │ └── ExampleProject │ │ │ └── ExampleProjectBus.h │ ├── Platform │ │ ├── Android │ │ │ ├── PAL_android.cmake │ │ │ ├── exampleproject_android_files.cmake │ │ │ └── exampleproject_shared_android_files.cmake │ │ ├── Linux │ │ │ ├── PAL_linux.cmake │ │ │ ├── exampleproject_linux_files.cmake │ │ │ └── exampleproject_shared_linux_files.cmake │ │ ├── Mac │ │ │ ├── PAL_mac.cmake │ │ │ ├── exampleproject_mac_files.cmake │ │ │ └── exampleproject_shared_mac_files.cmake │ │ ├── Windows │ │ │ ├── PAL_windows.cmake │ │ │ ├── exampleproject_shared_windows_files.cmake │ │ │ ├── exampleproject_windows_files.cmake │ │ │ └── platform_windows.cmake │ │ └── iOS │ │ │ ├── PAL_ios.cmake │ │ │ ├── exampleproject_ios_files.cmake │ │ │ └── exampleproject_shared_ios_files.cmake │ ├── Registry │ │ └── assetprocessor_settings.setreg │ ├── Source │ │ ├── ExampleProjectModule.cpp │ │ ├── ExampleProjectSystemComponent.cpp │ │ └── ExampleProjectSystemComponent.h │ ├── enabled_gems.cmake │ ├── exampleproject_files.cmake │ ├── exampleproject_shared_files.cmake │ └── gem.json ├── Platform │ ├── Android │ │ ├── android_project.cmake │ │ └── android_project.json │ ├── Linux │ │ ├── linux_project.cmake │ │ └── linux_project.json │ ├── Mac │ │ ├── mac_project.cmake │ │ └── mac_project.json │ ├── Windows │ │ ├── windows_project.cmake │ │ └── windows_project.json │ └── iOS │ │ ├── ios_project.cmake │ │ └── ios_project.json ├── Registry │ ├── assetprocessor_settings.setreg │ ├── awscoreconfiguration.setreg │ ├── liveplusplus.setreg │ ├── physxdebugconfiguration.setreg │ ├── physxdefaultsceneconfiguration.setreg │ └── physxsystemconfiguration.setreg ├── Resources │ ├── GameSDK.ico │ ├── LegacyLogoLauncher.bmp │ └── Platform │ │ ├── Mac │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_128.png │ │ │ │ ├── icon_128_2x.png │ │ │ │ ├── icon_16.png │ │ │ │ ├── icon_16_2x.png │ │ │ │ ├── icon_256.png │ │ │ │ ├── icon_256_2x.png │ │ │ │ ├── icon_32.png │ │ │ │ ├── icon_32_2x.png │ │ │ │ ├── icon_512.png │ │ │ │ └── icon_512_2x.png │ │ │ └── Contents.json │ │ └── Info.plist │ │ └── iOS │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── iPadAppIcon152x152.png │ │ │ ├── iPadAppIcon76x76.png │ │ │ ├── iPadProAppIcon167x167.png │ │ │ ├── iPadSettingsIcon29x29.png │ │ │ ├── iPadSettingsIcon58x58.png │ │ │ ├── iPadSpotlightIcon40x40.png │ │ │ ├── iPadSpotlightIcon80x80.png │ │ │ ├── iPhoneAppIcon120x120.png │ │ │ ├── iPhoneAppIcon180x180.png │ │ │ ├── iPhoneSettingsIcon58x58.png │ │ │ ├── iPhoneSettingsIcon87x87.png │ │ │ ├── iPhoneSpotlightIcon120x120.png │ │ │ └── iPhoneSpotlightIcon80x80.png │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── iPadLaunchImage1024x768.png │ │ │ ├── iPadLaunchImage1536x2048.png │ │ │ ├── iPadLaunchImage2048x1536.png │ │ │ ├── iPadLaunchImage768x1024.png │ │ │ ├── iPhoneLaunchImage640x1136.png │ │ │ └── iPhoneLaunchImage640x960.png │ │ └── Info.plist ├── ShaderLib │ ├── README.md │ ├── scenesrg.srgi │ └── viewsrg.srgi ├── autoexec.cfg ├── cmake │ └── EngineFinder.cmake ├── game.cfg ├── preview.png ├── project.json └── project.json.bak0 ├── LICENSE ├── LivePlusPlus ├── 3rdParty │ └── LivePP │ │ └── unpack_livepp_package_here.txt ├── CMakeLists.txt ├── Code │ ├── CMakeLists.txt │ ├── Platform │ │ ├── Android │ │ │ ├── PAL_android.cmake │ │ │ ├── liveplusplus_android_files.cmake │ │ │ └── liveplusplus_shared_android_files.cmake │ │ ├── Linux │ │ │ ├── PAL_linux.cmake │ │ │ ├── liveplusplus_linux_files.cmake │ │ │ └── liveplusplus_shared_linux_files.cmake │ │ ├── Mac │ │ │ ├── PAL_mac.cmake │ │ │ ├── liveplusplus_mac_files.cmake │ │ │ └── liveplusplus_shared_mac_files.cmake │ │ ├── Windows │ │ │ ├── LivePlusPlusModule_Windows.cpp │ │ │ ├── LivePlusPlusSystemComponent_Windows.cpp │ │ │ ├── LivePlusPlusSystemComponent_Windows.h │ │ │ ├── PAL_windows.cmake │ │ │ ├── liveplusplus_shared_windows_files.cmake │ │ │ ├── liveplusplus_windows_files.cmake │ │ │ └── platform_windows.cmake │ │ └── iOS │ │ │ ├── PAL_ios.cmake │ │ │ ├── liveplusplus_ios_files.cmake │ │ │ └── liveplusplus_shared_ios_files.cmake │ └── Source │ │ └── LivePlusPlusModule_Disabled.cpp ├── Platform │ ├── Android │ │ ├── android_gem.cmake │ │ └── android_gem.json │ ├── Linux │ │ ├── linux_gem.cmake │ │ └── linux_gem.json │ ├── Mac │ │ ├── mac_gem.cmake │ │ └── mac_gem.json │ ├── Windows │ │ ├── windows_gem.cmake │ │ └── windows_gem.json │ └── iOS │ │ ├── ios_gem.cmake │ │ └── ios_gem.json ├── gem.json └── preview.png └── README.md /ExampleProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/.gitignore -------------------------------------------------------------------------------- /ExampleProject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/CMakeLists.txt -------------------------------------------------------------------------------- /ExampleProject/Config/default_aws_resource_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Config/default_aws_resource_mappings.json -------------------------------------------------------------------------------- /ExampleProject/Config/shader_global_build_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Config/shader_global_build_options.json -------------------------------------------------------------------------------- /ExampleProject/Gem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/CMakeLists.txt -------------------------------------------------------------------------------- /ExampleProject/Gem/Include/ExampleProject/ExampleProjectBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Include/ExampleProject/ExampleProjectBus.h -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Android/PAL_android.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(PAL_TRAIT_EXAMPLEPROJECT_SUPPORTED TRUE) 3 | -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Android/exampleproject_android_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Android/exampleproject_android_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Android/exampleproject_shared_android_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Android/exampleproject_shared_android_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Linux/PAL_linux.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(PAL_TRAIT_EXAMPLEPROJECT_SUPPORTED TRUE) 3 | -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Linux/exampleproject_linux_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Linux/exampleproject_linux_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Linux/exampleproject_shared_linux_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Linux/exampleproject_shared_linux_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Mac/PAL_mac.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(PAL_TRAIT_EXAMPLEPROJECT_SUPPORTED TRUE) 3 | -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Mac/exampleproject_mac_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Mac/exampleproject_mac_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Mac/exampleproject_shared_mac_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Mac/exampleproject_shared_mac_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Windows/PAL_windows.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(PAL_TRAIT_EXAMPLEPROJECT_SUPPORTED TRUE) 3 | -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Windows/exampleproject_shared_windows_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Windows/exampleproject_shared_windows_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Windows/exampleproject_windows_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Windows/exampleproject_windows_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/Windows/platform_windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/Windows/platform_windows.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/iOS/PAL_ios.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(PAL_TRAIT_EXAMPLEPROJECT_SUPPORTED TRUE) 3 | -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/iOS/exampleproject_ios_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/iOS/exampleproject_ios_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Platform/iOS/exampleproject_shared_ios_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Platform/iOS/exampleproject_shared_ios_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/Registry/assetprocessor_settings.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Registry/assetprocessor_settings.setreg -------------------------------------------------------------------------------- /ExampleProject/Gem/Source/ExampleProjectModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Source/ExampleProjectModule.cpp -------------------------------------------------------------------------------- /ExampleProject/Gem/Source/ExampleProjectSystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Source/ExampleProjectSystemComponent.cpp -------------------------------------------------------------------------------- /ExampleProject/Gem/Source/ExampleProjectSystemComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/Source/ExampleProjectSystemComponent.h -------------------------------------------------------------------------------- /ExampleProject/Gem/enabled_gems.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/enabled_gems.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/exampleproject_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/exampleproject_files.cmake -------------------------------------------------------------------------------- /ExampleProject/Gem/exampleproject_shared_files.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(FILES 3 | Source/ExampleProjectModule.cpp 4 | ) 5 | -------------------------------------------------------------------------------- /ExampleProject/Gem/gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Gem/gem.json -------------------------------------------------------------------------------- /ExampleProject/Platform/Android/android_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/Android/android_project.cmake -------------------------------------------------------------------------------- /ExampleProject/Platform/Android/android_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/Android/android_project.json -------------------------------------------------------------------------------- /ExampleProject/Platform/Linux/linux_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/Linux/linux_project.cmake -------------------------------------------------------------------------------- /ExampleProject/Platform/Linux/linux_project.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Linux"] 3 | } -------------------------------------------------------------------------------- /ExampleProject/Platform/Mac/mac_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/Mac/mac_project.cmake -------------------------------------------------------------------------------- /ExampleProject/Platform/Mac/mac_project.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Mac"] 3 | } -------------------------------------------------------------------------------- /ExampleProject/Platform/Windows/windows_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/Windows/windows_project.cmake -------------------------------------------------------------------------------- /ExampleProject/Platform/Windows/windows_project.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Windows"] 3 | } -------------------------------------------------------------------------------- /ExampleProject/Platform/iOS/ios_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Platform/iOS/ios_project.cmake -------------------------------------------------------------------------------- /ExampleProject/Platform/iOS/ios_project.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["iOS"] 3 | } -------------------------------------------------------------------------------- /ExampleProject/Registry/assetprocessor_settings.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/assetprocessor_settings.setreg -------------------------------------------------------------------------------- /ExampleProject/Registry/awscoreconfiguration.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/awscoreconfiguration.setreg -------------------------------------------------------------------------------- /ExampleProject/Registry/liveplusplus.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/liveplusplus.setreg -------------------------------------------------------------------------------- /ExampleProject/Registry/physxdebugconfiguration.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/physxdebugconfiguration.setreg -------------------------------------------------------------------------------- /ExampleProject/Registry/physxdefaultsceneconfiguration.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/physxdefaultsceneconfiguration.setreg -------------------------------------------------------------------------------- /ExampleProject/Registry/physxsystemconfiguration.setreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Registry/physxsystemconfiguration.setreg -------------------------------------------------------------------------------- /ExampleProject/Resources/GameSDK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/GameSDK.ico -------------------------------------------------------------------------------- /ExampleProject/Resources/LegacyLogoLauncher.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/LegacyLogoLauncher.bmp -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128_2x.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256_2x.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/Mac/Info.plist -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadAppIcon152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadAppIcon152x152.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadAppIcon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadAppIcon76x76.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadProAppIcon167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadProAppIcon167x167.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSettingsIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSettingsIcon29x29.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSettingsIcon58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSettingsIcon58x58.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSpotlightIcon40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSpotlightIcon40x40.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSpotlightIcon80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPadSpotlightIcon80x80.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneAppIcon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneAppIcon120x120.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneAppIcon180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneAppIcon180x180.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSettingsIcon58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSettingsIcon58x58.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSettingsIcon87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSettingsIcon87x87.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSpotlightIcon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSpotlightIcon120x120.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSpotlightIcon80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/AppIcon.appiconset/iPhoneSpotlightIcon80x80.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png -------------------------------------------------------------------------------- /ExampleProject/Resources/Platform/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/Resources/Platform/iOS/Info.plist -------------------------------------------------------------------------------- /ExampleProject/ShaderLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/ShaderLib/README.md -------------------------------------------------------------------------------- /ExampleProject/ShaderLib/scenesrg.srgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/ShaderLib/scenesrg.srgi -------------------------------------------------------------------------------- /ExampleProject/ShaderLib/viewsrg.srgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/ShaderLib/viewsrg.srgi -------------------------------------------------------------------------------- /ExampleProject/autoexec.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExampleProject/cmake/EngineFinder.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/cmake/EngineFinder.cmake -------------------------------------------------------------------------------- /ExampleProject/game.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/game.cfg -------------------------------------------------------------------------------- /ExampleProject/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/preview.png -------------------------------------------------------------------------------- /ExampleProject/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/project.json -------------------------------------------------------------------------------- /ExampleProject/project.json.bak0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/ExampleProject/project.json.bak0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LICENSE -------------------------------------------------------------------------------- /LivePlusPlus/3rdParty/LivePP/unpack_livepp_package_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/3rdParty/LivePP/unpack_livepp_package_here.txt -------------------------------------------------------------------------------- /LivePlusPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/CMakeLists.txt -------------------------------------------------------------------------------- /LivePlusPlus/Code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/CMakeLists.txt -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Android/PAL_android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Android/PAL_android.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Android/liveplusplus_android_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Android/liveplusplus_android_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Android/liveplusplus_shared_android_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Android/liveplusplus_shared_android_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Linux/PAL_linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Linux/PAL_linux.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Linux/liveplusplus_linux_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Linux/liveplusplus_linux_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Linux/liveplusplus_shared_linux_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Linux/liveplusplus_shared_linux_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Mac/PAL_mac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Mac/PAL_mac.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Mac/liveplusplus_mac_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Mac/liveplusplus_mac_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Mac/liveplusplus_shared_mac_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Mac/liveplusplus_shared_mac_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/LivePlusPlusModule_Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/LivePlusPlusModule_Windows.cpp -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/LivePlusPlusSystemComponent_Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/LivePlusPlusSystemComponent_Windows.cpp -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/LivePlusPlusSystemComponent_Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/LivePlusPlusSystemComponent_Windows.h -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/PAL_windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/PAL_windows.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/liveplusplus_shared_windows_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/liveplusplus_shared_windows_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/liveplusplus_windows_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/liveplusplus_windows_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/Windows/platform_windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/Windows/platform_windows.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/iOS/PAL_ios.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/iOS/PAL_ios.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/iOS/liveplusplus_ios_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/iOS/liveplusplus_ios_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Platform/iOS/liveplusplus_shared_ios_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Platform/iOS/liveplusplus_shared_ios_files.cmake -------------------------------------------------------------------------------- /LivePlusPlus/Code/Source/LivePlusPlusModule_Disabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/Code/Source/LivePlusPlusModule_Disabled.cpp -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Android/android_gem.cmake: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Android/android_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Android"], 3 | } -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Linux/linux_gem.cmake: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Linux/linux_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Linux"] 3 | } -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Mac/mac_gem.cmake: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Mac/mac_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Mac"] 3 | } -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Windows/windows_gem.cmake: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LivePlusPlus/Platform/Windows/windows_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["Windows"] 3 | } -------------------------------------------------------------------------------- /LivePlusPlus/Platform/iOS/ios_gem.cmake: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LivePlusPlus/Platform/iOS/ios_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tags": ["iOS"] 3 | } -------------------------------------------------------------------------------- /LivePlusPlus/gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/gem.json -------------------------------------------------------------------------------- /LivePlusPlus/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/LivePlusPlus/preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelfishOlex/LivePlusPlus_O3DE_Gem/HEAD/README.md --------------------------------------------------------------------------------