├── .dockerignore ├── .github └── workflows │ ├── Build.yml │ └── Release.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── Inno ├── .gitignore ├── CodeDependencies.iss ├── dependencies │ ├── netcorecheck.exe │ └── netcorecheck_x64.exe ├── publish.sh └── setup.iss ├── PixelGraph.CLI ├── AppLifetime.cs ├── CommandLine │ ├── AppCommandLine.cs │ ├── ConvertCommand.cs │ ├── GenerateCommand.cs │ ├── GenerateNormalCommand.cs │ ├── GenerateOcclusionCommand.cs │ ├── ImportCommand.cs │ └── PublishCommand.cs ├── Extensions │ └── ConsoleEx.cs ├── PixelGraph.CLI.csproj ├── Program.cs └── Properties │ └── Assembly.cs ├── PixelGraph.Common ├── AppCommon.cs ├── Bedrock │ └── BedrockTextureSet.cs ├── ConnectedTextures │ ├── CtmProperties.cs │ ├── CtmPublisher.cs │ ├── CtmTypes.cs │ └── ExpandedCtmMap.cs ├── Effects │ └── EdgeFadeImageEffect.cs ├── Extensions │ ├── BoxCast.cs │ ├── CollectionExtensions.cs │ ├── ColorExtensions.cs │ ├── DictionaryExtensions.cs │ ├── ExceptionExtensions.cs │ ├── MathEx.cs │ ├── PathEx.cs │ ├── PixelExtensions.cs │ ├── RectangleExtensions.cs │ ├── StringExtensions.cs │ ├── VectorExtensions.cs │ └── YamlStringEnumConverter.cs ├── GpuProcessors │ ├── GpuProcessorBase.cs │ ├── OcclusionGpuProcessor.cs │ └── Samplers │ │ ├── GpuNearestSampler.cs │ │ └── GpuSamplerBase.cs ├── IO │ ├── AppDataHelper.cs │ ├── ArchiveInputReader.cs │ ├── ArchiveOutputWriter.cs │ ├── BaseInputReader.cs │ ├── ConcurrencyHelper.cs │ ├── FileInputReader.cs │ ├── FileOutputWriter.cs │ ├── GameEditions.cs │ ├── IInputReader.cs │ ├── IOutputWriter.cs │ ├── ImageExtensions.cs │ ├── ImageFormat.cs │ ├── ImageWriter.cs │ ├── Importing │ │ ├── BedrockMaterialImporter.cs │ │ ├── BedrockToJavaImportMapping.cs │ │ ├── JavaMaterialImporter.cs │ │ ├── MaterialImporterBase.cs │ │ └── ResourcePackImporter.cs │ ├── NamingStructure.cs │ ├── Publishing │ │ ├── BedrockMaterialMetadata.cs │ │ ├── BedrockPackMetadata.cs │ │ ├── BedrockPublisher.cs │ │ ├── BedrockRtxGrassFixer.cs │ │ ├── DefaultPublishMapping.cs │ │ ├── GenericTexturePublisher.cs │ │ ├── JavaPackMetadata.cs │ │ ├── JavaPublisher.cs │ │ ├── JavaToBedrockPublishMapping.cs │ │ ├── PublishIgnore.cs │ │ ├── PublishReaderBase.cs │ │ ├── PublishSummary.cs │ │ ├── PublisherBase.cs │ │ └── PublisherMapping.cs │ ├── Serialization │ │ ├── CustomGraphVisitor.cs │ │ ├── IYamlHasData.cs │ │ ├── MaterialReader.cs │ │ ├── MaterialWriter.cs │ │ ├── ProjectSerializer.cs │ │ └── PropertyFileSerializer.cs │ ├── Texture │ │ ├── BedrockTextureReader.cs │ │ ├── BedrockTextureWriter.cs │ │ ├── JavaTextureReader.cs │ │ ├── JavaTextureWriter.cs │ │ ├── RawTextureReader.cs │ │ ├── RawTextureWriter.cs │ │ ├── TextureReaderBase.cs │ │ └── TextureWriterBase.cs │ └── UnitHelper.cs ├── ImageProcessors │ ├── BedrockGrassOpacityProcessor.cs │ ├── HeightEdgeProcessor.cs │ ├── HeightVarianceProcessor.cs │ ├── ImageProcessors.cs │ ├── ItemProcessor.cs │ ├── NormalBlendProcessor.cs │ ├── NormalEncoding.cs │ ├── NormalMagnitudeWriteProcessor.cs │ ├── NormalMapProcessor.cs │ ├── NormalRotateProcessor.cs │ ├── OcclusionProcessor.cs │ ├── OverlayProcessor.cs │ ├── PostOcclusionProcessor.cs │ └── ResizeProcessor.cs ├── LocalLogFile.cs ├── Material │ ├── MaterialBumpProperties.cs │ ├── MaterialColorProperties.cs │ ├── MaterialConnectionProperties.cs │ ├── MaterialCtmProperties.cs │ ├── MaterialEmissiveProperties.cs │ ├── MaterialF0Properties.cs │ ├── MaterialFilter.cs │ ├── MaterialHcmProperties.cs │ ├── MaterialHeightProperties.cs │ ├── MaterialMetalProperties.cs │ ├── MaterialNormalProperties.cs │ ├── MaterialOcclusionProperties.cs │ ├── MaterialOpacityProperties.cs │ ├── MaterialPart.cs │ ├── MaterialPorosityProperties.cs │ ├── MaterialProperties.cs │ ├── MaterialRoughProperties.cs │ ├── MaterialSmoothProperties.cs │ ├── MaterialSpecularProperties.cs │ ├── MaterialSssProperties.cs │ └── MaterialType.cs ├── PixelGraph.Common.csproj ├── PixelOperations │ ├── PixelAction.cs │ ├── PixelContext.cs │ ├── PixelProcessor.cs │ ├── PixelRowContext.cs │ └── PixelRowProcessor.cs ├── Projects │ ├── ProjectData.cs │ ├── ProjectPublishContext.cs │ └── PublishProfileProperties.cs ├── Properties │ └── AssemblyInfo.cs ├── ResourcePack │ ├── PackEncoding.cs │ ├── PackEncodingChannel.cs │ ├── PackInputEncoding.cs │ └── PackOutputEncoding.cs ├── Samplers │ ├── AverageSampler.cs │ ├── BicubicSampler.cs │ ├── BilinearSampler.cs │ ├── NearestSampler.cs │ ├── Sampler.cs │ ├── SamplerBase.cs │ ├── Samplers.cs │ ├── TexCoordHelper.cs │ └── WeightedAverageSampler.cs ├── ServiceBuilder.cs ├── SourceEmptyException.cs ├── TextureFormats │ ├── Bedrock │ │ ├── MersFormat.cs │ │ └── RtxFormat.cs │ ├── ColorFormat.cs │ ├── EncodingChannel.cs │ ├── ITextureFormatFactory.cs │ ├── Java │ │ ├── AlphaPbrFormat.cs │ │ ├── LabPbr11Format.cs │ │ ├── LabPbr12Format.cs │ │ ├── LabPbr13Format.cs │ │ ├── OldPbrFormat.cs │ │ └── SpecularFormat.cs │ ├── RawFormat.cs │ └── TextureFormat.cs └── Textures │ ├── ColorChannel.cs │ ├── Graphing │ ├── Builders │ │ ├── ImportGraphBuilder.cs │ │ ├── PublishGraphBuilder.cs │ │ └── TextureGraphBuilder.cs │ ├── CtmTextureMap.cs │ ├── TextureGraph.cs │ ├── TextureGraphContext.cs │ ├── TextureHeightGraph.cs │ ├── TextureNormalGraph.cs │ └── TextureOcclusionGraph.cs │ ├── ImageChannels.cs │ ├── ItemTextureGenerator.cs │ ├── NormalMapBuilder.cs │ ├── NormalMapMethods.cs │ ├── PixelMapping.cs │ ├── TextureBuilder.cs │ ├── TextureChannelMapping.cs │ ├── TextureRegionEnumerator.cs │ ├── TextureSizeUtility.cs │ ├── TextureSource.cs │ ├── TextureSourceGraph.cs │ ├── TextureTags.cs │ └── UVRegion.cs ├── PixelGraph.Rendering ├── BlockMesh │ ├── BlockMeshNode.cs │ └── BlockMeshRenderCore.cs ├── CubeMaps │ ├── CubeMapRenderCore.cs │ ├── DynamicSkyCubeCore.cs │ ├── DynamicSkyCubeNode.cs │ ├── EquirectangularCubeMapCore.cs │ ├── EquirectangularCubeMapNode.cs │ ├── ICubeMapSource.cs │ ├── IrradianceCubeCore.cs │ └── IrradianceCubeNode.cs ├── Extensions │ ├── ColorExtensions.cs │ └── MeshBuilderExtensions.cs ├── GpuImageProcessors │ └── OcclusionGpuProcessor.cs ├── LUTs │ ├── DielectricBdrfLutNode.cs │ ├── DielectricBrdfLutMapCore.cs │ ├── ILutMapSource.cs │ └── LutMapRenderCore.cs ├── Materials │ ├── CustomDiffuseMaterialCore.cs │ ├── CustomDiffuseMaterialVariable.cs │ ├── CustomNormalsMaterialCore.cs │ ├── CustomNormalsMaterialVariable.cs │ ├── CustomPbrMaterialCore.cs │ └── CustomPbrMaterialVariable.cs ├── Minecraft │ ├── MinecraftMeshCore.cs │ ├── MinecraftMeshNode.cs │ ├── MinecraftMeshStruct.cs │ ├── MinecraftSceneCore.cs │ ├── MinecraftSceneNode.cs │ ├── MinecraftSceneStruct.cs │ └── MinecraftTime.cs ├── Models │ ├── BlockMeshBuilder.cs │ ├── BlockMeshGeometry3D.cs │ ├── BlockMeshGeometryBufferModel.cs │ ├── BlockModelBuilder.cs │ ├── EntityModelBuilder.cs │ ├── ModelBuilder.cs │ └── RenderContext.cs ├── OcclusionEffectsManager.cs ├── PixelGraph.Rendering.csproj ├── PreviewEffectsManager.cs ├── RenderPreviewModes.cs ├── Resources │ └── Shaders │ │ ├── bdrf_dielectric_ps.hlsl │ │ ├── compile.sh │ │ ├── diffuse_ps.hlsl │ │ ├── diffuse_vs.hlsl │ │ ├── lib │ │ ├── common_funcs.hlsl │ │ ├── common_structs.hlsl │ │ ├── complex_numbers.hlsl │ │ ├── diffuse.hlsl │ │ ├── labPbr_material.hlsl │ │ ├── normals.hlsl │ │ ├── occlusion_structs.hlsl │ │ ├── oldPbr_material.hlsl │ │ ├── parallax.hlsl │ │ ├── pbr_filament.hlsl │ │ ├── pbr_filament2.hlsl │ │ ├── pbr_hcm.hlsl │ │ ├── pbr_jessie.hlsl │ │ ├── sky_atmosphere.hlsl │ │ └── tonemap.hlsl │ │ ├── normals_ps.hlsl │ │ ├── occlusion_ps.hlsl │ │ ├── occlusion_vs.hlsl │ │ ├── pbr_filament_ps.hlsl │ │ ├── pbr_jessie_ps.hlsl │ │ ├── pbr_null_ps.hlsl │ │ ├── pbr_vs.hlsl │ │ ├── shadow_ps.hlsl │ │ ├── shadow_vs.hlsl │ │ ├── sky_erp_ps.hlsl │ │ ├── sky_final_cube_ps.hlsl │ │ ├── sky_final_erp_ps.hlsl │ │ ├── sky_irradiance_ps.hlsl │ │ ├── sky_ps.hlsl │ │ └── sky_vs.hlsl ├── Shaders │ ├── CustomBlendStateDescriptions.cs │ ├── CustomBufferNames.cs │ ├── CustomInputLayout.cs │ ├── CustomPassNames.cs │ ├── CustomRenderTechniqueNames.cs │ ├── CustomSamplerStateNames.cs │ ├── CustomSamplerStates.cs │ ├── CustomShaderManager.cs │ ├── ShaderByteCodeManager.cs │ ├── ShaderCompileError.cs │ └── ShaderSourceDescription.cs ├── Sky │ ├── DebugSkyBoxCore.cs │ ├── DebugSkyBoxNode.cs │ ├── DynamicSkyDomeCore.cs │ ├── DynamicSkyDomeNode.cs │ ├── EquirectangularSkyDomeCore.cs │ ├── EquirectangularSkyDomeNode.cs │ ├── SkyBoxBufferModel.cs │ └── SkyDomeBufferModel.cs └── Utilities │ └── ResourceLoader.cs ├── PixelGraph.Tests ├── CommandLineTests │ └── PublishTests.cs ├── ConversionTests.cs ├── Data │ ├── height-round.png │ ├── height-small.png │ ├── height.png │ └── output-height.png ├── EncodingChannelTests │ ├── ColorTests.cs │ ├── EmissiveTests.cs │ ├── HcmTests.cs │ ├── HeightTests.cs │ ├── MetalTests.cs │ ├── NormalTests.cs │ ├── OcclusionTests.cs │ ├── OpacityTests.cs │ ├── PerceptualSmoothTests.cs │ ├── PorositySSSTests.cs │ ├── PorosityTests.cs │ ├── RoughTests.cs │ ├── SmoothTests.cs │ └── SubSurfaceScatteringTests.cs ├── GenerationTests │ ├── NormalGenerationTests.cs │ └── OcclusionGenerationTests.cs ├── ImportTests │ ├── BedrockImportTests.cs │ ├── BedrockRtxImportTests.cs │ ├── JavaLab13ImportTests.cs │ ├── JavaOldPbrImportTests.cs │ └── RawImportTests.cs ├── InputTests │ ├── BedrockMaterialReaderTests.cs │ ├── FileLoaderTests.cs │ ├── JavaMaterialReaderTests.cs │ └── RawMaterialReaderTests.cs ├── Internal │ ├── Extensions │ │ └── StringExtensions.cs │ ├── ImageTestBase.cs │ ├── Mocks │ │ ├── MockFileContent.cs │ │ ├── MockInputReader.cs │ │ ├── MockOutputWriter.cs │ │ └── MockServiceBuilder.cs │ ├── PixelAssert.cs │ ├── TestBase.cs │ └── TestLogger.cs ├── PixelContextTests.cs ├── PixelGraph.Tests.csproj ├── PixelMappingTests.cs └── PublishTests │ ├── BedrockRtxPublishTests.cs │ ├── JavaAlphaPbrPublishTests.cs │ ├── JavaLab13PublishTests.cs │ └── JavaOldPbrPublishTests.cs ├── PixelGraph.UI ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── CheckBoxEx.xaml │ ├── CheckBoxEx.xaml.cs │ ├── ComboBoxEx.xaml │ ├── ComboBoxEx.xaml.cs │ ├── ContentTreeView.xaml │ ├── ContentTreeView.xaml.cs │ ├── DocumentTabControl.xaml │ ├── DocumentTabControl.xaml.cs │ ├── LogListControl.xaml │ ├── LogListControl.xaml.cs │ ├── MaterialConnectionsControl.xaml │ ├── MaterialConnectionsControl.xaml.cs │ ├── MaterialFiltersControl.xaml │ ├── MaterialFiltersControl.xaml.cs │ ├── MaterialPropertiesControl.xaml │ ├── MaterialPropertiesControl.xaml.cs │ ├── MockRenderPreviewControl.xaml │ ├── MockRenderPreviewControl.xaml.cs │ ├── MockScenePropertiesControl.xaml │ ├── MockScenePropertiesControl.xaml.cs │ ├── PropertyGridControl.xaml │ ├── PropertyGridControl.xaml.cs │ ├── RecentProjectsControl.xaml │ ├── RecentProjectsControl.xaml.cs │ ├── RenderPreviewControl.xaml │ ├── RenderPreviewControl.xaml.cs │ ├── ScenePropertiesControl.xaml │ ├── ScenePropertiesControl.xaml.cs │ ├── TextBoxEx.xaml │ ├── TextBoxEx.xaml.cs │ ├── TexturePreviewControl.xaml │ ├── TexturePreviewControl.xaml.cs │ ├── ToggleButtonEx.xaml │ └── ToggleButtonEx.xaml.cs ├── Converters │ ├── BooleanInverseConverter.cs │ ├── DecimalToDoubleConverter.cs │ ├── EmptyToBooleanConverter.cs │ ├── FormatDescriptionConverter.cs │ ├── NormalMethodLabelConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── NullableConverter.cs │ ├── SamplerLabelConverter.cs │ └── VisibilityConverter.cs ├── Helix │ ├── Controls │ │ ├── BlockMeshGeometryModel3D.cs │ │ ├── DebugSkyBox3D.cs │ │ ├── DielectricBdrfLut3D.cs │ │ ├── DynamicSkyCube3D.cs │ │ ├── DynamicSkyDome3D.cs │ │ ├── EquirectangularCubeMap3D.cs │ │ ├── EquirectangularSkyDome3D.cs │ │ ├── IrradianceCube3D.cs │ │ ├── MinecraftMesh3D.cs │ │ └── MinecraftScene3D.cs │ ├── Materials │ │ ├── CustomDiffuseMaterial.cs │ │ ├── CustomNormalsMaterial.cs │ │ ├── CustomPbrMaterial.cs │ │ ├── DiffuseMaterialBuilder.cs │ │ ├── LabPbrMaterialBuilder.cs │ │ ├── MaterialBuilderBase.cs │ │ ├── NormalsMaterialBuilder.cs │ │ └── OldPbrMaterialBuilder.cs │ └── Models │ │ └── MultiPartMeshBuilder.cs ├── Internal │ ├── Caching │ │ ├── AsyncRegistrationCounterCache.cs │ │ ├── CacheRegistration.cs │ │ └── RegistrationCounterCache.cs │ ├── Extensions │ │ ├── ObservableCollectionExtensions.cs │ │ ├── ProcessExtensions.cs │ │ ├── ServiceBuilderExtensions.cs │ │ └── StringExtensions.cs │ ├── IO │ │ ├── AppDataUtility.cs │ │ ├── ContentTreeReader.cs │ │ ├── MinecraftResourceLocator.cs │ │ ├── Models │ │ │ ├── BlockModelParser.cs │ │ │ ├── EntityModelParser.cs │ │ │ ├── MCPath.cs │ │ │ └── ModelLoader.cs │ │ ├── Publishing │ │ │ ├── PublishLocation.cs │ │ │ └── PublishLocationManager.cs │ │ ├── RecentPathManager.cs │ │ ├── ResourcePackReader.cs │ │ └── Resources │ │ │ ├── ResourceLocation.cs │ │ │ └── ResourceLocationManager.cs │ ├── Logging │ │ ├── LogReceiver.cs │ │ └── RedirectLogger.cs │ ├── MaterialPropertiesCache.cs │ ├── ModelBase.cs │ ├── Preview │ │ ├── ImageSharpSource.cs │ │ ├── RenderPreview.cs │ │ ├── Textures │ │ │ ├── LayerPreviewBuilder.cs │ │ │ ├── RenderDiffusePreviewBuilder.cs │ │ │ ├── RenderLabPbrPreviewBuilder.cs │ │ │ ├── RenderNormalsPreviewBuilder.cs │ │ │ ├── RenderOldPbrPreviewBuilder.cs │ │ │ └── TexturePreviewBuilderBase.cs │ │ └── WaterMode.cs │ ├── Projects │ │ ├── ProjectContext.cs │ │ └── ProjectContextManager.cs │ ├── Settings │ │ ├── AppSettings.cs │ │ ├── AppSettingsDataModel.cs │ │ └── RenderPreviewSettings.cs │ ├── Tabs │ │ ├── TabPreviewContext.cs │ │ └── TabPreviewManager.cs │ ├── Utilities │ │ ├── ColorHelper.cs │ │ ├── ProcessHelper.cs │ │ ├── RtfHelper.cs │ │ ├── TextureEditUtility.cs │ │ ├── ThemeHelper.cs │ │ └── ZoomHelper.cs │ └── VisualTreeHelperEx.cs ├── Models │ ├── ImportEntityFiltersModel.cs │ ├── MaterialConnectionsModel.cs │ ├── MaterialFiltersModel.cs │ ├── MaterialPropertiesModel.cs │ ├── MockScene │ │ ├── MockRenderPropertiesModel.cs │ │ └── MockScenePropertiesModel.cs │ ├── NewMaterialModel.cs │ ├── NewProjectModel.cs │ ├── PackConvertModel.cs │ ├── PackImportModel.cs │ ├── PackInputModel.cs │ ├── ProjectTileModel.cs │ ├── PropertyGrid │ │ ├── EditBoolPropertyRowModel.cs │ │ ├── EditPropertyRowModelBase.cs │ │ ├── EditSelectPropertyRowModel.cs │ │ ├── EditTextPropertyRowModel.cs │ │ └── SeparatorPropertyRowModel.cs │ ├── PublishLocationDisplayModel.cs │ ├── PublishProfileDisplayRow.cs │ ├── PublishProfileEditModel.cs │ ├── RenderPreviewModel.cs │ ├── ResourceLocationDisplayModel.cs │ ├── Scene │ │ ├── RenderPropertiesModel.cs │ │ └── ScenePropertiesModel.cs │ ├── Tabs │ │ ├── MaterialTabModel.cs │ │ ├── TabModelBase.cs │ │ └── TextureTabModel.cs │ ├── TextureChannelMapping.cs │ ├── TextureFormatModel.cs │ └── TexturePreviewModel.cs ├── PixelGraph.UI.csproj ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── EULA.rtf │ ├── Patreon.rtf │ ├── TOS.rtf │ ├── tiled_bg.png │ └── unknown_pack.png ├── ViewData │ ├── AllTextureFormatValues.cs │ ├── AppThemes.cs │ ├── BlendModeValues.cs │ ├── ColorChannelValues.cs │ ├── CtmTypeValues.cs │ ├── EditModes.cs │ ├── EnvironmentSizeList.cs │ ├── FxaaLevelValues.cs │ ├── GameEditionValues.cs │ ├── GameNamespaceValues.cs │ ├── GameObjectTypeValues.cs │ ├── GameVersionValues.cs │ ├── ISearchParameters.cs │ ├── ImageEncodingValues.cs │ ├── IrradianceSizeList.cs │ ├── NormalColorChannelValues.cs │ ├── NormalMethodValues.cs │ ├── OcclusionSamplerValues.cs │ ├── OptionalAllTextureFormatValues.cs │ ├── OptionalColorChannelValues.cs │ ├── OptionalEncodingChannelValues.cs │ ├── OptionalTextureTagValues.cs │ ├── PomTypeValues.cs │ ├── RenderModeValues.cs │ ├── SamplerValues.cs │ ├── TextureItemList.cs │ ├── TextureTagValues.cs │ ├── ViewModes.cs │ └── WaterModeValues.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── ContentTree.cs │ ├── EndUserLicenseAgreementViewModel.cs │ ├── ImportEntityFiltersViewModel.cs │ ├── ImportTree.cs │ ├── MainWindowViewModel.cs │ ├── NewMaterialViewModel.cs │ ├── NewProjectViewModel.cs │ ├── ObservableMaterialFilter.cs │ ├── PatreonNotificationViewModel.cs │ ├── ProjectConfigViewModel.cs │ ├── PropertyCollectionBase.cs │ ├── PublishLocationsViewModel.cs │ ├── PublishOutputViewModel.cs │ ├── PublishProfilesViewModel.cs │ ├── RecentProjectsViewModel.cs │ ├── RenderPreviewViewModel.cs │ ├── ResourceLocationsViewModel.cs │ ├── SettingsViewModel.cs │ ├── TermsOfServiceViewModel.cs │ ├── TexturePreviewViewModel.cs │ └── TextureSource.cs ├── Windows │ ├── ImportEntityFiltersWindow.xaml │ ├── ImportEntityFiltersWindow.xaml.cs │ ├── ImportPackWindow.xaml │ ├── ImportPackWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Modals │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── EndUserLicenseAgreementWindow.xaml │ │ ├── EndUserLicenseAgreementWindow.xaml.cs │ │ ├── PatreonNotificationWindow.xaml │ │ ├── PatreonNotificationWindow.xaml.cs │ │ ├── TermsOfServiceWindow.xaml │ │ └── TermsOfServiceWindow.xaml.cs │ ├── NewMaterialWindow.xaml │ ├── NewMaterialWindow.xaml.cs │ ├── NewProjectWindow.xaml │ ├── NewProjectWindow.xaml.cs │ ├── PackConvertWindow.xaml │ ├── PackConvertWindow.xaml.cs │ ├── ProjectConfigWindow.xaml │ ├── ProjectConfigWindow.xaml.cs │ ├── PublishLocationsWindow.xaml │ ├── PublishLocationsWindow.xaml.cs │ ├── PublishOutputWindow.xaml │ ├── PublishOutputWindow.xaml.cs │ ├── PublishProfilesWindow.xaml │ ├── PublishProfilesWindow.xaml.cs │ ├── ResourceLocationsWindow.xaml │ ├── ResourceLocationsWindow.xaml.cs │ ├── SettingsWindow.xaml │ ├── SettingsWindow.xaml.cs │ ├── ShaderErrorsWindow.xaml │ ├── ShaderErrorsWindow.xaml.cs │ ├── TextureFormatWindow.xaml │ └── TextureFormatWindow.xaml.cs ├── icon.ico └── publish.cmd ├── PixelGraph.sln ├── PixelGraph.sln.DotSettings ├── README.md └── media ├── LAB11.drawio ├── LAB11.png ├── NormalGeneration.drawio ├── NormalGeneration.png ├── OcclusionGeneration.drawio ├── OcclusionGeneration.png ├── UI.png ├── icon.png └── icon.xcf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Dockerfile -------------------------------------------------------------------------------- /Inno/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /publish 3 | -------------------------------------------------------------------------------- /Inno/CodeDependencies.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Inno/CodeDependencies.iss -------------------------------------------------------------------------------- /Inno/dependencies/netcorecheck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Inno/dependencies/netcorecheck.exe -------------------------------------------------------------------------------- /Inno/dependencies/netcorecheck_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Inno/dependencies/netcorecheck_x64.exe -------------------------------------------------------------------------------- /Inno/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Inno/publish.sh -------------------------------------------------------------------------------- /Inno/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/Inno/setup.iss -------------------------------------------------------------------------------- /PixelGraph.CLI/AppLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/AppLifetime.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/AppCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/AppCommandLine.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/ConvertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/ConvertCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/GenerateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/GenerateCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/GenerateNormalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/GenerateNormalCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/GenerateOcclusionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/GenerateOcclusionCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/ImportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/ImportCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/CommandLine/PublishCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/CommandLine/PublishCommand.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/Extensions/ConsoleEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/Extensions/ConsoleEx.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/PixelGraph.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/PixelGraph.CLI.csproj -------------------------------------------------------------------------------- /PixelGraph.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.CLI/Program.cs -------------------------------------------------------------------------------- /PixelGraph.CLI/Properties/Assembly.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("PixelGraph.Tests")] 4 | -------------------------------------------------------------------------------- /PixelGraph.Common/AppCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/AppCommon.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Bedrock/BedrockTextureSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Bedrock/BedrockTextureSet.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ConnectedTextures/CtmProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ConnectedTextures/CtmProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ConnectedTextures/CtmPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ConnectedTextures/CtmPublisher.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ConnectedTextures/CtmTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ConnectedTextures/CtmTypes.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ConnectedTextures/ExpandedCtmMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ConnectedTextures/ExpandedCtmMap.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Effects/EdgeFadeImageEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Effects/EdgeFadeImageEffect.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/BoxCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/BoxCast.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/MathEx.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/PathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/PathEx.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/PixelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/PixelExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/RectangleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/RectangleExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/VectorExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Extensions/YamlStringEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Extensions/YamlStringEnumConverter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/GpuProcessors/GpuProcessorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/GpuProcessors/GpuProcessorBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/GpuProcessors/OcclusionGpuProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/GpuProcessors/OcclusionGpuProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/GpuProcessors/Samplers/GpuNearestSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/GpuProcessors/Samplers/GpuNearestSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/GpuProcessors/Samplers/GpuSamplerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/GpuProcessors/Samplers/GpuSamplerBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/AppDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/AppDataHelper.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ArchiveInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ArchiveInputReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ArchiveOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ArchiveOutputWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/BaseInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/BaseInputReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ConcurrencyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ConcurrencyHelper.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/FileInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/FileInputReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/FileOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/FileOutputWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/GameEditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/GameEditions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/IInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/IInputReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/IOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/IOutputWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ImageExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ImageFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/ImageWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Importing/BedrockMaterialImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Importing/BedrockMaterialImporter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Importing/BedrockToJavaImportMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Importing/BedrockToJavaImportMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Importing/JavaMaterialImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Importing/JavaMaterialImporter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Importing/MaterialImporterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Importing/MaterialImporterBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Importing/ResourcePackImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Importing/ResourcePackImporter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/NamingStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/NamingStructure.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/BedrockMaterialMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/BedrockMaterialMetadata.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/BedrockPackMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/BedrockPackMetadata.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/BedrockPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/BedrockPublisher.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/BedrockRtxGrassFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/BedrockRtxGrassFixer.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/DefaultPublishMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/DefaultPublishMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/GenericTexturePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/GenericTexturePublisher.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/JavaPackMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/JavaPackMetadata.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/JavaPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/JavaPublisher.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/JavaToBedrockPublishMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/JavaToBedrockPublishMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/PublishIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/PublishIgnore.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/PublishReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/PublishReaderBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/PublishSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/PublishSummary.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/PublisherBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/PublisherBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Publishing/PublisherMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Publishing/PublisherMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/CustomGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/CustomGraphVisitor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/IYamlHasData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/IYamlHasData.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/MaterialReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/MaterialReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/MaterialWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/MaterialWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/ProjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/ProjectSerializer.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Serialization/PropertyFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Serialization/PropertyFileSerializer.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/BedrockTextureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/BedrockTextureReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/BedrockTextureWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/BedrockTextureWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/JavaTextureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/JavaTextureReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/JavaTextureWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/JavaTextureWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/RawTextureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/RawTextureReader.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/RawTextureWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/RawTextureWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/TextureReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/TextureReaderBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/Texture/TextureWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/Texture/TextureWriterBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/IO/UnitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/IO/UnitHelper.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/BedrockGrassOpacityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/BedrockGrassOpacityProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/HeightEdgeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/HeightEdgeProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/HeightVarianceProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/HeightVarianceProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/ImageProcessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/ImageProcessors.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/ItemProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/ItemProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/NormalBlendProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/NormalBlendProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/NormalEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/NormalEncoding.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/NormalMagnitudeWriteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/NormalMagnitudeWriteProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/NormalMapProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/NormalMapProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/NormalRotateProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/NormalRotateProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/OcclusionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/OcclusionProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/OverlayProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/OverlayProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/PostOcclusionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/PostOcclusionProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ImageProcessors/ResizeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ImageProcessors/ResizeProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/LocalLogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/LocalLogFile.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialBumpProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialBumpProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialColorProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialColorProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialConnectionProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialConnectionProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialCtmProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialCtmProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialEmissiveProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialEmissiveProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialF0Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialF0Properties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialFilter.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialHcmProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialHcmProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialHeightProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialHeightProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialMetalProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialMetalProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialNormalProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialNormalProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialOcclusionProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialOcclusionProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialOpacityProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialOpacityProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialPart.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialPorosityProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialPorosityProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialRoughProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialRoughProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialSmoothProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialSmoothProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialSpecularProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialSpecularProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialSssProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialSssProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Material/MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Material/MaterialType.cs -------------------------------------------------------------------------------- /PixelGraph.Common/PixelGraph.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelGraph.Common.csproj -------------------------------------------------------------------------------- /PixelGraph.Common/PixelOperations/PixelAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelOperations/PixelAction.cs -------------------------------------------------------------------------------- /PixelGraph.Common/PixelOperations/PixelContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelOperations/PixelContext.cs -------------------------------------------------------------------------------- /PixelGraph.Common/PixelOperations/PixelProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelOperations/PixelProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/PixelOperations/PixelRowContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelOperations/PixelRowContext.cs -------------------------------------------------------------------------------- /PixelGraph.Common/PixelOperations/PixelRowProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/PixelOperations/PixelRowProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Projects/ProjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Projects/ProjectData.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Projects/ProjectPublishContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Projects/ProjectPublishContext.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Projects/PublishProfileProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Projects/PublishProfileProperties.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("PixelGraph.Tests")] 4 | -------------------------------------------------------------------------------- /PixelGraph.Common/ResourcePack/PackEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ResourcePack/PackEncoding.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ResourcePack/PackEncodingChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ResourcePack/PackEncodingChannel.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ResourcePack/PackInputEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ResourcePack/PackInputEncoding.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ResourcePack/PackOutputEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ResourcePack/PackOutputEncoding.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/AverageSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/AverageSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/BicubicSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/BicubicSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/BilinearSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/BilinearSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/NearestSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/NearestSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/Sampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/Sampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/SamplerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/SamplerBase.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/Samplers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/Samplers.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/TexCoordHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/TexCoordHelper.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Samplers/WeightedAverageSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Samplers/WeightedAverageSampler.cs -------------------------------------------------------------------------------- /PixelGraph.Common/ServiceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/ServiceBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/SourceEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/SourceEmptyException.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Bedrock/MersFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Bedrock/MersFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Bedrock/RtxFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Bedrock/RtxFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/ColorFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/ColorFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/EncodingChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/EncodingChannel.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/ITextureFormatFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/ITextureFormatFactory.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/AlphaPbrFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/AlphaPbrFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/LabPbr11Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/LabPbr11Format.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/LabPbr12Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/LabPbr12Format.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/LabPbr13Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/LabPbr13Format.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/OldPbrFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/OldPbrFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/Java/SpecularFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/Java/SpecularFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/RawFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/RawFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/TextureFormats/TextureFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/TextureFormats/TextureFormat.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/ColorChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/ColorChannel.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/Builders/ImportGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/Builders/ImportGraphBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/Builders/PublishGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/Builders/PublishGraphBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/Builders/TextureGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/Builders/TextureGraphBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/CtmTextureMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/CtmTextureMap.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/TextureGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/TextureGraph.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/TextureGraphContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/TextureGraphContext.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/TextureHeightGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/TextureHeightGraph.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/TextureNormalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/TextureNormalGraph.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/Graphing/TextureOcclusionGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/Graphing/TextureOcclusionGraph.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/ImageChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/ImageChannels.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/ItemTextureGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/ItemTextureGenerator.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/NormalMapBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/NormalMapBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/NormalMapMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/NormalMapMethods.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/PixelMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/PixelMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureChannelMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureChannelMapping.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureRegionEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureRegionEnumerator.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureSizeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureSizeUtility.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureSource.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureSourceGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureSourceGraph.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/TextureTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/TextureTags.cs -------------------------------------------------------------------------------- /PixelGraph.Common/Textures/UVRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Common/Textures/UVRegion.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/BlockMesh/BlockMeshNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/BlockMesh/BlockMeshNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/BlockMesh/BlockMeshRenderCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/BlockMesh/BlockMeshRenderCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/CubeMapRenderCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/CubeMapRenderCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/DynamicSkyCubeCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/DynamicSkyCubeCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/DynamicSkyCubeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/DynamicSkyCubeNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/EquirectangularCubeMapCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/EquirectangularCubeMapCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/EquirectangularCubeMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/EquirectangularCubeMapNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/ICubeMapSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/ICubeMapSource.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/IrradianceCubeCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/IrradianceCubeCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/CubeMaps/IrradianceCubeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/CubeMaps/IrradianceCubeNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Extensions/MeshBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Extensions/MeshBuilderExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/GpuImageProcessors/OcclusionGpuProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/GpuImageProcessors/OcclusionGpuProcessor.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/LUTs/DielectricBdrfLutNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/LUTs/DielectricBdrfLutNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/LUTs/DielectricBrdfLutMapCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/LUTs/DielectricBrdfLutMapCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/LUTs/ILutMapSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/LUTs/ILutMapSource.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/LUTs/LutMapRenderCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/LUTs/LutMapRenderCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomDiffuseMaterialCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomDiffuseMaterialCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomDiffuseMaterialVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomDiffuseMaterialVariable.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomNormalsMaterialCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomNormalsMaterialCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomNormalsMaterialVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomNormalsMaterialVariable.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomPbrMaterialCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomPbrMaterialCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Materials/CustomPbrMaterialVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Materials/CustomPbrMaterialVariable.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftMeshCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftMeshCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftMeshNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftMeshNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftMeshStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftMeshStruct.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftSceneCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftSceneCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftSceneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftSceneNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftSceneStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftSceneStruct.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Minecraft/MinecraftTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Minecraft/MinecraftTime.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/BlockMeshBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/BlockMeshBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/BlockMeshGeometry3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/BlockMeshGeometry3D.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/BlockMeshGeometryBufferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/BlockMeshGeometryBufferModel.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/BlockModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/BlockModelBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/EntityModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/EntityModelBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/ModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/ModelBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Models/RenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Models/RenderContext.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/OcclusionEffectsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/OcclusionEffectsManager.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/PixelGraph.Rendering.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/PixelGraph.Rendering.csproj -------------------------------------------------------------------------------- /PixelGraph.Rendering/PreviewEffectsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/PreviewEffectsManager.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/RenderPreviewModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/RenderPreviewModes.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/bdrf_dielectric_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/bdrf_dielectric_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/compile.sh -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/diffuse_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/diffuse_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/diffuse_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/diffuse_vs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/common_funcs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/common_funcs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/common_structs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/common_structs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/complex_numbers.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/complex_numbers.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/diffuse.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/diffuse.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/labPbr_material.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/labPbr_material.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/normals.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/normals.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/occlusion_structs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/occlusion_structs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/oldPbr_material.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/oldPbr_material.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/parallax.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/parallax.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/pbr_filament.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/pbr_filament.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/pbr_filament2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/pbr_filament2.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/pbr_hcm.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/pbr_hcm.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/pbr_jessie.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/pbr_jessie.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/sky_atmosphere.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/sky_atmosphere.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/lib/tonemap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/lib/tonemap.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/normals_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/normals_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/occlusion_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/occlusion_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/occlusion_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/occlusion_vs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/pbr_filament_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/pbr_filament_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/pbr_jessie_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/pbr_jessie_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/pbr_null_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/pbr_null_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/pbr_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/pbr_vs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/shadow_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/shadow_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/shadow_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/shadow_vs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_erp_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_erp_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_final_cube_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_final_cube_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_final_erp_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_final_erp_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_irradiance_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_irradiance_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_ps.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Resources/Shaders/sky_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Resources/Shaders/sky_vs.hlsl -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomBlendStateDescriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomBlendStateDescriptions.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomBufferNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomBufferNames.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomInputLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomInputLayout.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomPassNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomPassNames.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomRenderTechniqueNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomRenderTechniqueNames.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomSamplerStateNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomSamplerStateNames.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomSamplerStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomSamplerStates.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/CustomShaderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/CustomShaderManager.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/ShaderByteCodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/ShaderByteCodeManager.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/ShaderCompileError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/ShaderCompileError.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Shaders/ShaderSourceDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Shaders/ShaderSourceDescription.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/DebugSkyBoxCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/DebugSkyBoxCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/DebugSkyBoxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/DebugSkyBoxNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/DynamicSkyDomeCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/DynamicSkyDomeCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/DynamicSkyDomeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/DynamicSkyDomeNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/EquirectangularSkyDomeCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/EquirectangularSkyDomeCore.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/EquirectangularSkyDomeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/EquirectangularSkyDomeNode.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/SkyBoxBufferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/SkyBoxBufferModel.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Sky/SkyDomeBufferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Sky/SkyDomeBufferModel.cs -------------------------------------------------------------------------------- /PixelGraph.Rendering/Utilities/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Rendering/Utilities/ResourceLoader.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/CommandLineTests/PublishTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/CommandLineTests/PublishTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ConversionTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Data/height-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Data/height-round.png -------------------------------------------------------------------------------- /PixelGraph.Tests/Data/height-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Data/height-small.png -------------------------------------------------------------------------------- /PixelGraph.Tests/Data/height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Data/height.png -------------------------------------------------------------------------------- /PixelGraph.Tests/Data/output-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Data/output-height.png -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/ColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/ColorTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/EmissiveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/EmissiveTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/HcmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/HcmTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/HeightTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/HeightTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/MetalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/MetalTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/NormalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/NormalTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/OcclusionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/OcclusionTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/OpacityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/OpacityTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/PerceptualSmoothTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/PerceptualSmoothTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/PorositySSSTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/PorositySSSTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/PorosityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/PorosityTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/RoughTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/RoughTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/SmoothTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/SmoothTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/EncodingChannelTests/SubSurfaceScatteringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/EncodingChannelTests/SubSurfaceScatteringTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/GenerationTests/NormalGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/GenerationTests/NormalGenerationTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/GenerationTests/OcclusionGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/GenerationTests/OcclusionGenerationTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ImportTests/BedrockImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ImportTests/BedrockImportTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ImportTests/BedrockRtxImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ImportTests/BedrockRtxImportTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ImportTests/JavaLab13ImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ImportTests/JavaLab13ImportTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ImportTests/JavaOldPbrImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ImportTests/JavaOldPbrImportTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/ImportTests/RawImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/ImportTests/RawImportTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/InputTests/BedrockMaterialReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/InputTests/BedrockMaterialReaderTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/InputTests/FileLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/InputTests/FileLoaderTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/InputTests/JavaMaterialReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/InputTests/JavaMaterialReaderTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/InputTests/RawMaterialReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/InputTests/RawMaterialReaderTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/ImageTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/ImageTestBase.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/Mocks/MockFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/Mocks/MockFileContent.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/Mocks/MockInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/Mocks/MockInputReader.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/Mocks/MockOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/Mocks/MockOutputWriter.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/Mocks/MockServiceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/Mocks/MockServiceBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/PixelAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/PixelAssert.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/TestBase.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/Internal/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/Internal/TestLogger.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PixelContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PixelContextTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PixelGraph.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PixelGraph.Tests.csproj -------------------------------------------------------------------------------- /PixelGraph.Tests/PixelMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PixelMappingTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PublishTests/BedrockRtxPublishTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PublishTests/BedrockRtxPublishTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PublishTests/JavaAlphaPbrPublishTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PublishTests/JavaAlphaPbrPublishTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PublishTests/JavaLab13PublishTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PublishTests/JavaLab13PublishTests.cs -------------------------------------------------------------------------------- /PixelGraph.Tests/PublishTests/JavaOldPbrPublishTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.Tests/PublishTests/JavaOldPbrPublishTests.cs -------------------------------------------------------------------------------- /PixelGraph.UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/App.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/App.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/CheckBoxEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/CheckBoxEx.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/CheckBoxEx.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/CheckBoxEx.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ComboBoxEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ComboBoxEx.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ComboBoxEx.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ComboBoxEx.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ContentTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ContentTreeView.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ContentTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ContentTreeView.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/DocumentTabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/DocumentTabControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/DocumentTabControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/DocumentTabControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/LogListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/LogListControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/LogListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/LogListControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialConnectionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialConnectionsControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialConnectionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialConnectionsControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialFiltersControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialFiltersControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialFiltersControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialFiltersControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialPropertiesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialPropertiesControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MaterialPropertiesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MaterialPropertiesControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MockRenderPreviewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MockRenderPreviewControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MockRenderPreviewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MockRenderPreviewControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MockScenePropertiesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MockScenePropertiesControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/MockScenePropertiesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/MockScenePropertiesControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/PropertyGridControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/PropertyGridControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/PropertyGridControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/PropertyGridControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/RecentProjectsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/RecentProjectsControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/RecentProjectsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/RecentProjectsControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/RenderPreviewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/RenderPreviewControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/RenderPreviewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/RenderPreviewControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ScenePropertiesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ScenePropertiesControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ScenePropertiesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ScenePropertiesControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/TextBoxEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/TextBoxEx.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/TextBoxEx.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/TextBoxEx.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/TexturePreviewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/TexturePreviewControl.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/TexturePreviewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/TexturePreviewControl.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ToggleButtonEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ToggleButtonEx.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Controls/ToggleButtonEx.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Controls/ToggleButtonEx.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/BooleanInverseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/BooleanInverseConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/DecimalToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/DecimalToDoubleConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/EmptyToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/EmptyToBooleanConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/FormatDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/FormatDescriptionConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/NormalMethodLabelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/NormalMethodLabelConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/NullableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/NullableConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/SamplerLabelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/SamplerLabelConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/BlockMeshGeometryModel3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/BlockMeshGeometryModel3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/DebugSkyBox3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/DebugSkyBox3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/DielectricBdrfLut3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/DielectricBdrfLut3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/DynamicSkyCube3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/DynamicSkyCube3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/DynamicSkyDome3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/DynamicSkyDome3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/EquirectangularCubeMap3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/EquirectangularCubeMap3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/EquirectangularSkyDome3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/EquirectangularSkyDome3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/IrradianceCube3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/IrradianceCube3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/MinecraftMesh3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/MinecraftMesh3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Controls/MinecraftScene3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Controls/MinecraftScene3D.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/CustomDiffuseMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/CustomDiffuseMaterial.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/CustomNormalsMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/CustomNormalsMaterial.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/CustomPbrMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/CustomPbrMaterial.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/DiffuseMaterialBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/DiffuseMaterialBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/LabPbrMaterialBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/LabPbrMaterialBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/MaterialBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/MaterialBuilderBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/NormalsMaterialBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/NormalsMaterialBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Materials/OldPbrMaterialBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Materials/OldPbrMaterialBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Helix/Models/MultiPartMeshBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Helix/Models/MultiPartMeshBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Caching/AsyncRegistrationCounterCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Caching/AsyncRegistrationCounterCache.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Caching/CacheRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Caching/CacheRegistration.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Caching/RegistrationCounterCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Caching/RegistrationCounterCache.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Extensions/ObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Extensions/ObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Extensions/ServiceBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Extensions/ServiceBuilderExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/AppDataUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/AppDataUtility.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/ContentTreeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/ContentTreeReader.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/MinecraftResourceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/MinecraftResourceLocator.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Models/BlockModelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Models/BlockModelParser.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Models/EntityModelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Models/EntityModelParser.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Models/MCPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Models/MCPath.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Models/ModelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Models/ModelLoader.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Publishing/PublishLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Publishing/PublishLocation.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Publishing/PublishLocationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Publishing/PublishLocationManager.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/RecentPathManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/RecentPathManager.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/ResourcePackReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/ResourcePackReader.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Resources/ResourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Resources/ResourceLocation.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/IO/Resources/ResourceLocationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/IO/Resources/ResourceLocationManager.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Logging/LogReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Logging/LogReceiver.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Logging/RedirectLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Logging/RedirectLogger.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/MaterialPropertiesCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/MaterialPropertiesCache.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/ModelBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/ImageSharpSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/ImageSharpSource.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/RenderPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/RenderPreview.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/LayerPreviewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/LayerPreviewBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/RenderDiffusePreviewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/RenderDiffusePreviewBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/RenderLabPbrPreviewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/RenderLabPbrPreviewBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/RenderNormalsPreviewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/RenderNormalsPreviewBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/RenderOldPbrPreviewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/RenderOldPbrPreviewBuilder.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/Textures/TexturePreviewBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/Textures/TexturePreviewBuilderBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Preview/WaterMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Preview/WaterMode.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Projects/ProjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Projects/ProjectContext.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Projects/ProjectContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Projects/ProjectContextManager.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Settings/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Settings/AppSettings.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Settings/AppSettingsDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Settings/AppSettingsDataModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Settings/RenderPreviewSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Settings/RenderPreviewSettings.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Tabs/TabPreviewContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Tabs/TabPreviewContext.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Tabs/TabPreviewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Tabs/TabPreviewManager.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/ColorHelper.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/ProcessHelper.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/RtfHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/RtfHelper.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/TextureEditUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/TextureEditUtility.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/ThemeHelper.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/Utilities/ZoomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/Utilities/ZoomHelper.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Internal/VisualTreeHelperEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Internal/VisualTreeHelperEx.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/ImportEntityFiltersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/ImportEntityFiltersModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/MaterialConnectionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/MaterialConnectionsModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/MaterialFiltersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/MaterialFiltersModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/MaterialPropertiesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/MaterialPropertiesModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/MockScene/MockRenderPropertiesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/MockScene/MockRenderPropertiesModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/MockScene/MockScenePropertiesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/MockScene/MockScenePropertiesModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/NewMaterialModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/NewMaterialModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/NewProjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/NewProjectModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PackConvertModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PackConvertModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PackImportModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PackImportModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PackInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PackInputModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/ProjectTileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/ProjectTileModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PropertyGrid/EditBoolPropertyRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PropertyGrid/EditBoolPropertyRowModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PropertyGrid/EditPropertyRowModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PropertyGrid/EditPropertyRowModelBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PropertyGrid/EditSelectPropertyRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PropertyGrid/EditSelectPropertyRowModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PropertyGrid/EditTextPropertyRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PropertyGrid/EditTextPropertyRowModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PropertyGrid/SeparatorPropertyRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PropertyGrid/SeparatorPropertyRowModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PublishLocationDisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PublishLocationDisplayModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PublishProfileDisplayRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PublishProfileDisplayRow.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/PublishProfileEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/PublishProfileEditModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/RenderPreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/RenderPreviewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/ResourceLocationDisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/ResourceLocationDisplayModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/Scene/RenderPropertiesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/Scene/RenderPropertiesModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/Scene/ScenePropertiesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/Scene/ScenePropertiesModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/Tabs/MaterialTabModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/Tabs/MaterialTabModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/Tabs/TabModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/Tabs/TabModelBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/Tabs/TextureTabModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/Tabs/TextureTabModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/TextureChannelMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/TextureChannelMapping.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/TextureFormatModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/TextureFormatModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Models/TexturePreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Models/TexturePreviewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/PixelGraph.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/PixelGraph.UI.csproj -------------------------------------------------------------------------------- /PixelGraph.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Resources/EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Resources/EULA.rtf -------------------------------------------------------------------------------- /PixelGraph.UI/Resources/Patreon.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Resources/Patreon.rtf -------------------------------------------------------------------------------- /PixelGraph.UI/Resources/TOS.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Resources/TOS.rtf -------------------------------------------------------------------------------- /PixelGraph.UI/Resources/tiled_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Resources/tiled_bg.png -------------------------------------------------------------------------------- /PixelGraph.UI/Resources/unknown_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Resources/unknown_pack.png -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/AllTextureFormatValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/AllTextureFormatValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/AppThemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/AppThemes.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/BlendModeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/BlendModeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/ColorChannelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/ColorChannelValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/CtmTypeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/CtmTypeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/EditModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/EditModes.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/EnvironmentSizeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/EnvironmentSizeList.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/FxaaLevelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/FxaaLevelValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/GameEditionValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/GameEditionValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/GameNamespaceValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/GameNamespaceValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/GameObjectTypeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/GameObjectTypeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/GameVersionValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/GameVersionValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/ISearchParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/ISearchParameters.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/ImageEncodingValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/ImageEncodingValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/IrradianceSizeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/IrradianceSizeList.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/NormalColorChannelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/NormalColorChannelValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/NormalMethodValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/NormalMethodValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/OcclusionSamplerValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/OcclusionSamplerValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/OptionalAllTextureFormatValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/OptionalAllTextureFormatValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/OptionalColorChannelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/OptionalColorChannelValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/OptionalEncodingChannelValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/OptionalEncodingChannelValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/OptionalTextureTagValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/OptionalTextureTagValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/PomTypeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/PomTypeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/RenderModeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/RenderModeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/SamplerValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/SamplerValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/TextureItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/TextureItemList.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/TextureTagValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/TextureTagValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/ViewModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/ViewModes.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewData/WaterModeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewData/WaterModeValues.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ContentTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ContentTree.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/EndUserLicenseAgreementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/EndUserLicenseAgreementViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ImportEntityFiltersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ImportEntityFiltersViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ImportTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ImportTree.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/NewMaterialViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/NewMaterialViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/NewProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/NewProjectViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ObservableMaterialFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ObservableMaterialFilter.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/PatreonNotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/PatreonNotificationViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ProjectConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ProjectConfigViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/PropertyCollectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/PropertyCollectionBase.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/PublishLocationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/PublishLocationsViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/PublishOutputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/PublishOutputViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/PublishProfilesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/PublishProfilesViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/RecentProjectsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/RecentProjectsViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/RenderPreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/RenderPreviewViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/ResourceLocationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/ResourceLocationsViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/TermsOfServiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/TermsOfServiceViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/TexturePreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/TexturePreviewViewModel.cs -------------------------------------------------------------------------------- /PixelGraph.UI/ViewModels/TextureSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/ViewModels/TextureSource.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ImportEntityFiltersWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ImportEntityFiltersWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ImportEntityFiltersWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ImportEntityFiltersWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ImportPackWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ImportPackWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ImportPackWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ImportPackWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/AboutWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/EndUserLicenseAgreementWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/EndUserLicenseAgreementWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/EndUserLicenseAgreementWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/EndUserLicenseAgreementWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/PatreonNotificationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/PatreonNotificationWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/PatreonNotificationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/PatreonNotificationWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/TermsOfServiceWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/TermsOfServiceWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/Modals/TermsOfServiceWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/Modals/TermsOfServiceWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/NewMaterialWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/NewMaterialWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/NewMaterialWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/NewMaterialWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/NewProjectWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/NewProjectWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/NewProjectWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/NewProjectWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PackConvertWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PackConvertWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PackConvertWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PackConvertWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ProjectConfigWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ProjectConfigWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ProjectConfigWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ProjectConfigWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishLocationsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishLocationsWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishLocationsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishLocationsWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishOutputWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishOutputWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishOutputWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishOutputWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishProfilesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishProfilesWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/PublishProfilesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/PublishProfilesWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ResourceLocationsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ResourceLocationsWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ResourceLocationsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ResourceLocationsWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/SettingsWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ShaderErrorsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ShaderErrorsWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/ShaderErrorsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/ShaderErrorsWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/TextureFormatWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/TextureFormatWindow.xaml -------------------------------------------------------------------------------- /PixelGraph.UI/Windows/TextureFormatWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/Windows/TextureFormatWindow.xaml.cs -------------------------------------------------------------------------------- /PixelGraph.UI/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/icon.ico -------------------------------------------------------------------------------- /PixelGraph.UI/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.UI/publish.cmd -------------------------------------------------------------------------------- /PixelGraph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.sln -------------------------------------------------------------------------------- /PixelGraph.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/PixelGraph.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/README.md -------------------------------------------------------------------------------- /media/LAB11.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/LAB11.drawio -------------------------------------------------------------------------------- /media/LAB11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/LAB11.png -------------------------------------------------------------------------------- /media/NormalGeneration.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/NormalGeneration.drawio -------------------------------------------------------------------------------- /media/NormalGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/NormalGeneration.png -------------------------------------------------------------------------------- /media/OcclusionGeneration.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/OcclusionGeneration.drawio -------------------------------------------------------------------------------- /media/OcclusionGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/OcclusionGeneration.png -------------------------------------------------------------------------------- /media/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/UI.png -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Null-MC/PixelGraph/HEAD/media/icon.xcf --------------------------------------------------------------------------------