├── .gitattributes ├── .gitignore ├── Content ├── Models.wedir ├── Models │ ├── scene.bin │ ├── scene.bin.wefile │ ├── scene.gltf │ ├── scene.gltf.wemd │ ├── scene_Embedded.wedir │ └── scene_Embedded │ │ ├── Materials.wedir │ │ └── Materials │ │ ├── accent_yellow.wemt │ │ ├── metal_bright.wemt │ │ ├── metal_dark.wemt │ │ ├── metal_mid.wemt │ │ ├── plastic_cone_black.wemt │ │ └── plastic_grey.wemt ├── Scenes.wedir └── Scenes │ ├── MyScene.wescene │ ├── MyScene.wescene.wesc │ └── MyScene │ ├── Environment.wedir │ └── Environment │ ├── SceneReflectionProbe.werp │ └── SceneReflectionProbe │ ├── Irradiance.texdmp │ ├── Irradiance.texdmp.wetx │ ├── Radiance.texdmp │ └── Radiance.texdmp.wetx ├── Directory.Build.props ├── Images ├── FormsSample.png ├── MAUISample.png ├── SDLSample.png ├── WinUISample.png └── WpfSample.png ├── LICENSE ├── README.md ├── UIWindowSystemsDemo.Editor ├── MyCustomClassEditor.cs ├── Properties │ └── AssemblyInfo.cs └── UIWindowSystemsDemo.Editor.csproj ├── UIWindowSystemsDemo.MAUI.sln ├── UIWindowSystemsDemo.MAUI ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── Evergine │ ├── AppBuilderExtensions.cs │ ├── EvergineView.cs │ └── EvergineViewHandler.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── EvergineViewHandler.Android.cs │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Resources │ │ │ └── values │ │ │ │ └── colors.xml │ │ └── linker.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── EvergineViewHandler.Windows.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── EvergineAppViewController.cs │ │ ├── EvergineViewHandler.iOS.cs │ │ ├── Info.plist │ │ └── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml └── UIWindowSystemsDemo.MAUI.csproj ├── UIWindowSystemsDemo.SDL.sln ├── UIWindowSystemsDemo.SDL ├── Program.cs └── UIWindowSystemsDemo.SDL.csproj ├── UIWindowSystemsDemo.WPF.sln ├── UIWindowSystemsDemo.WPF ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── EvergineDisplayHelper.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── SecondaryWindow.xaml ├── SecondaryWindow.xaml.cs ├── SeparatedWindows.xaml ├── SeparatedWindows.xaml.cs └── UIWindowSystemsDemo.WPF.csproj ├── UIWindowSystemsDemo.WinUI (Package) ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Package.appxmanifest └── UIWindowSystemsDemo.WinUI (Package).wapproj ├── UIWindowSystemsDemo.WinUI.sln ├── UIWindowSystemsDemo.WinUI ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── UIWindowSystemsDemo.WinUI.csproj └── app.manifest ├── UIWindowSystemsDemo.Windows.sln ├── UIWindowSystemsDemo.Windows ├── CustomForm.Designer.cs ├── CustomForm.cs ├── CustomForm.resx ├── Program.cs └── UIWindowSystemsDemo.Windows.csproj ├── UIWindowSystemsDemo.weproj ├── UIWindowSystemsDemo ├── DisplacementBehavior.cs ├── InteractionService.cs ├── MyApplication.cs ├── MyScene.cs ├── Properties │ └── AssemblyInfo.cs ├── ResetCameraComponent.cs └── UIWindowSystemsDemo.csproj └── nuget.config /.gitattributes: -------------------------------------------------------------------------------- 1 | *.weproj eol=crlf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/Models.wedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models.wedir -------------------------------------------------------------------------------- /Content/Models/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene.bin -------------------------------------------------------------------------------- /Content/Models/scene.bin.wefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene.bin.wefile -------------------------------------------------------------------------------- /Content/Models/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene.gltf -------------------------------------------------------------------------------- /Content/Models/scene.gltf.wemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene.gltf.wemd -------------------------------------------------------------------------------- /Content/Models/scene_Embedded.wedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded.wedir -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials.wedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials.wedir -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/accent_yellow.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/accent_yellow.wemt -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/metal_bright.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/metal_bright.wemt -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/metal_dark.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/metal_dark.wemt -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/metal_mid.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/metal_mid.wemt -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/plastic_cone_black.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/plastic_cone_black.wemt -------------------------------------------------------------------------------- /Content/Models/scene_Embedded/Materials/plastic_grey.wemt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Models/scene_Embedded/Materials/plastic_grey.wemt -------------------------------------------------------------------------------- /Content/Scenes.wedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes.wedir -------------------------------------------------------------------------------- /Content/Scenes/MyScene.wescene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene.wescene -------------------------------------------------------------------------------- /Content/Scenes/MyScene.wescene.wesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene.wescene.wesc -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment.wedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment.wedir -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment/SceneReflectionProbe.werp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment/SceneReflectionProbe.werp -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment/SceneReflectionProbe/Irradiance.texdmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment/SceneReflectionProbe/Irradiance.texdmp -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment/SceneReflectionProbe/Irradiance.texdmp.wetx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment/SceneReflectionProbe/Irradiance.texdmp.wetx -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment/SceneReflectionProbe/Radiance.texdmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment/SceneReflectionProbe/Radiance.texdmp -------------------------------------------------------------------------------- /Content/Scenes/MyScene/Environment/SceneReflectionProbe/Radiance.texdmp.wetx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Content/Scenes/MyScene/Environment/SceneReflectionProbe/Radiance.texdmp.wetx -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Images/FormsSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Images/FormsSample.png -------------------------------------------------------------------------------- /Images/MAUISample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Images/MAUISample.png -------------------------------------------------------------------------------- /Images/SDLSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Images/SDLSample.png -------------------------------------------------------------------------------- /Images/WinUISample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Images/WinUISample.png -------------------------------------------------------------------------------- /Images/WpfSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/Images/WpfSample.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/README.md -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Editor/MyCustomClassEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Editor/MyCustomClassEditor.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Editor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Editor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Editor/UIWindowSystemsDemo.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Editor/UIWindowSystemsDemo.Editor.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI.sln -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/App.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/App.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/AppShell.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/AppShell.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Evergine/AppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Evergine/AppBuilderExtensions.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Evergine/EvergineView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Evergine/EvergineView.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Evergine/EvergineViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Evergine/EvergineViewHandler.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/MainPage.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/MainPage.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/MauiProgram.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/EvergineViewHandler.Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/EvergineViewHandler.Android.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Android/linker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Android/linker.xml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Windows/EvergineViewHandler.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Windows/EvergineViewHandler.Windows.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/iOS/EvergineAppViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/iOS/EvergineAppViewController.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/iOS/EvergineViewHandler.iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/iOS/EvergineViewHandler.iOS.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.MAUI/UIWindowSystemsDemo.MAUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.MAUI/UIWindowSystemsDemo.MAUI.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.SDL.sln -------------------------------------------------------------------------------- /UIWindowSystemsDemo.SDL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.SDL/Program.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.SDL/UIWindowSystemsDemo.SDL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.SDL/UIWindowSystemsDemo.SDL.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF.sln -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/App.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/App.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/EvergineDisplayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/EvergineDisplayHelper.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/SecondaryWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/SecondaryWindow.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/SecondaryWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/SecondaryWindow.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/SeparatedWindows.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/SeparatedWindows.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/SeparatedWindows.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/SeparatedWindows.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WPF/UIWindowSystemsDemo.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WPF/UIWindowSystemsDemo.WPF.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/StoreLogo.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI (Package)/UIWindowSystemsDemo.WinUI (Package).wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI (Package)/UIWindowSystemsDemo.WinUI (Package).wapproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI.sln -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/App.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/App.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/MainWindow.xaml -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/UIWindowSystemsDemo.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/UIWindowSystemsDemo.WinUI.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.WinUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.WinUI/app.manifest -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows.sln -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows/CustomForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows/CustomForm.Designer.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows/CustomForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows/CustomForm.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows/CustomForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows/CustomForm.resx -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows/Program.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo.Windows/UIWindowSystemsDemo.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.Windows/UIWindowSystemsDemo.Windows.csproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo.weproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo.weproj -------------------------------------------------------------------------------- /UIWindowSystemsDemo/DisplacementBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/DisplacementBehavior.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/InteractionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/InteractionService.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/MyApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/MyApplication.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/MyScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/MyScene.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/ResetCameraComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/ResetCameraComponent.cs -------------------------------------------------------------------------------- /UIWindowSystemsDemo/UIWindowSystemsDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/UIWindowSystemsDemo/UIWindowSystemsDemo.csproj -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvergineTeam/UIWindowSystemsDemo/HEAD/nuget.config --------------------------------------------------------------------------------