View hdrp.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Packages/com.unity.render-pipelines.high-definition@12.1.7/Runtime/RenderPipeline/HDRenderPipeline.cs b/Packages/com.unity.render-pipelines.high-definition@12.1.7/Runtime/RenderPipeline/HDRenderPipeline.cs | |
index 34918678..6997fe2e 100644 | |
--- a/Packages/com.unity.render-pipelines.high-definition@12.1.7/Runtime/RenderPipeline/HDRenderPipeline.cs | |
+++ b/Packages/com.unity.render-pipelines.high-definition@12.1.7/Runtime/RenderPipeline/HDRenderPipeline.cs | |
@@ -1334,6 +1334,14 @@ namespace UnityEngine.Rendering.HighDefinition | |
hdCamera.RequestDynamicResolution(cameraRequestedDynamicRes, dynResHandler); | |
+ // Force add all the HDProbes | |
+ var allProbes = GameObject.FindObjectsOfType<HDProbe>(); | |
+ cullingResults.hdProbeCullingResults.Reset(); | |
+ foreach (var probe in allProbes) |
View GrpcExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Grpc.Core; | |
using UniRx; | |
using UniRx.Diagnostics; | |
using UnityEngine; | |
using System; | |
using System.Collections.Concurrent; | |
using System.Threading; | |
using Cysharp.Threading.Tasks; |
View .editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[*] | |
trim_trailing_whitespace=false | |
charset=utf-8 | |
end_of_line=lf | |
insert_final_newline=false | |
indent_style=space | |
indent_size=4 | |
# Microsoft .NET properties | |
csharp_new_line_before_members_in_object_initializers=false |
View dockerd.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data-root" : "/var/packages/Docker/target/docker", | |
"log-driver" : "json-file", | |
"registry-mirrors" : [], | |
"group": "administrators" | |
} |
View ObservableUWP.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if !UniRxLibrary | |
using ObservableUnity = UniRx.Observable; | |
#endif | |
using System; | |
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
using Hash = System.Collections.Generic.Dictionary<string, string>; |
View Loca.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hiddenswitch.spellsource.applications; | |
import com.hiddenswitch.spellsource.Broadcaster; | |
import com.hiddenswitch.spellsource.Gateway; | |
import com.hiddenswitch.spellsource.Spellsource; | |
import com.hiddenswitch.spellsource.Tracing; | |
import com.hiddenswitch.spellsource.util.Logging; | |
import com.hiddenswitch.spellsource.util.Mongo; | |
import com.hiddenswitch.spellsource.util.RpcClient; | |
import io.vertx.core.Vertx; |
View boostrap.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
brew install python3 | |
pip3 install virtualenv | |
cd ~/Documents | |
virtualenv --python=python3 Environment | |
source Environment/bin/activate | |
pip3 install jupyter | |
jupyter notebook |
View repetition_algorithm.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View RepititionAlgorithm.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace ProjectHolste | |
{ | |
public class RepetitionAlgorithm<T> : IEnumerator<T> | |
{ |
View Embedded.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hiddenswitch.spellsource.applications; | |
import com.hiddenswitch.spellsource.Bots; | |
import com.hiddenswitch.spellsource.Broadcaster; | |
import com.hiddenswitch.spellsource.Spellsource; | |
import com.hiddenswitch.spellsource.util.Logging; | |
import io.vertx.core.Vertx; | |
import org.apache.commons.lang3.exception.ExceptionUtils; | |
import static com.hiddenswitch.spellsource.util.Mongo.mongo; |
NewerOlder