From 924c06d2adc119adb316b3382b08566e81228644 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:47:26 +0200 Subject: [PATCH 01/13] Update README.md --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index d4f2014..d0ce286 100644 --- a/README.md +++ b/README.md @@ -39,15 +39,10 @@ To **compile shaders**, include the following code in your `.csproj` file: - - - - - - + PreserveNewest true From fa818d43613eaaf5017d06961f19ed84a5cababe Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:48:40 +0200 Subject: [PATCH 02/13] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0ce286..833d047 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Coming SoOn! # ⚠️ Importand for the Installation For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: -```cs +```xml C:\VulkanSDK\1.3.283.0\Bin @@ -33,7 +33,7 @@ For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home ``` To **compile shaders**, include the following code in your `.csproj` file: -```cs +```xml From 44ee60d63c1d821b7b7a0ddeb816775253c3cb54 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:50:56 +0200 Subject: [PATCH 03/13] Update README.md --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 833d047..a076cb3 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,7 @@ Coming SoOn! --- # ⚠️ Importand for the Installation -For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: -```xml - - - C:\VulkanSDK\1.3.283.0\Bin - -``` - +For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. To **compile shaders**, include the following code in your `.csproj` file: ```xml From 9e5a0c4c6fca140922fc2b50da0085b578969074 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:51:44 +0200 Subject: [PATCH 04/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a076cb3..bbcfd5d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Coming SoOn! # ⚠️ Importand for the Installation For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. -To **compile shaders**, include the following code in your `.csproj` file: +And for **compiling shaders**, include the following code in your `.csproj` file: ```xml From ce326c665b25d67a72989a66451fe8438de14cff Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:52:38 +0200 Subject: [PATCH 05/13] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bbcfd5d..651985a 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ Coming SoOn! --- # ⚠️ Importand for the Installation -For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. -And for **compiling shaders**, include the following code in your `.csproj` file: +> 1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. +> 2. And for **compiling shaders**, include the following code in your `.csproj` file: ```xml From d58d1629080d44ac4a9ae54df691693ed1ea47e0 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:55:43 +0200 Subject: [PATCH 06/13] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 651985a..a816283 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,14 @@ Coming SoOn! --- # ⚠️ Importand for the Installation -> 1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. +> 1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: +```xml + + + C:\VulkanSDK\1.3.283.0\Bin + +``` + > 2. And for **compiling shaders**, include the following code in your `.csproj` file: ```xml From f3b07ad40f7a716f7590ec067bc7deb9263e904d Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:56:00 +0200 Subject: [PATCH 07/13] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a816283..842f9fe 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Coming SoOn! --- # ⚠️ Importand for the Installation -> 1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: +1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: ```xml @@ -32,7 +32,7 @@ Coming SoOn! ``` -> 2. And for **compiling shaders**, include the following code in your `.csproj` file: +2. And for **compiling shaders**, include the following code in your `.csproj` file: ```xml From c33561db88642f1bbc243f078a50fbb2deb27a1e Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:56:31 +0200 Subject: [PATCH 08/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 842f9fe..0a7343c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Coming SoOn! ``` -2. And for **compiling shaders**, include the following code in your `.csproj` file: +2. To **compile shaders**, include the following code in your `.csproj` file: ```xml From d5de663273236037ea80703619f4165e8f28d19f Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:53:20 +0200 Subject: [PATCH 09/13] Update README.md --- README.md | 54 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 0a7343c..c8846ad 100644 --- a/README.md +++ b/README.md @@ -26,48 +26,66 @@ Coming SoOn! # ⚠️ Importand for the Installation 1. For this project, you need the [`Vulkan SDK`](https://vulkan.lunarg.com/sdk/home#windows) with the version `[1.3.283.0]`. Please add the following code to your `.csproj` file: ```xml + + - C:\VulkanSDK\1.3.283.0\Bin + C:/VulkanSDK/1.3.283.0/Bin ``` 2. To **compile shaders**, include the following code in your `.csproj` file: ```xml - - - - - - + + + + + content + + - + PreserveNewest true + + + + + + PreserveNewest + true + + + + PreserveNewest + true + + + - + - + - + - + - - - - - - + + + + + + ``` From 39de7b1e4852bca5ffd36b23d22cbdcbae260312 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:55:27 +0200 Subject: [PATCH 10/13] Update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c8846ad..4fc5e09 100644 --- a/README.md +++ b/README.md @@ -36,21 +36,6 @@ Coming SoOn! 2. To **compile shaders**, include the following code in your `.csproj` file: ```xml - - - - - content - - - - - - PreserveNewest - true - - - @@ -87,6 +72,21 @@ Coming SoOn! + + + + + + content + + + + + + PreserveNewest + true + + ``` # 💻 Platforms From 9a83b94009236bd2f5f4dcfaed24811eac4c0bea Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:56:37 +0200 Subject: [PATCH 11/13] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4fc5e09..f0e604a 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,10 @@ Coming SoOn! +``` + +For implimenting the `Shaders, Textures...` into the project to load them, add this code: +```cs From 8e3fab0e46d05867737f25c959a69cddf2eb0da7 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:56:53 +0200 Subject: [PATCH 12/13] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index f0e604a..0e4e303 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,7 @@ Coming SoOn! ``` For implimenting the `Shaders, Textures...` into the project to load them, add this code: -```cs - +```xml From 8c56d2eea3179f6d42589c172ca43045c145db8a Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:57:50 +0200 Subject: [PATCH 13/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e4e303..cce4474 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Coming SoOn! ``` -For implimenting the `Shaders, Textures...` into the project to load them, add this code: +3. To implimenting the `Shaders, Textures...` into the project to load them, add this code: ```xml