slimshader

Results 34 issues of slimshader

I am getting an assertion exception from within the Wait node in the Stop() method: ``` Assert.AreEqual(this.currentState, State.ACTIVE, "can only stop active nodes, tried to stop"); ``` The node is...

bug

Hi, a question regarding design of component interfaces: why do interfaces expose Event(s) instead of explicitly declaring a method? say why: ``` public interface IInteractable : IComponent { Event onHoverEnter...

Hi, How to use [Cleanup] attribute? I Am not seeing any differences in generated code with or without [Cleanup] attribute added to the component.

Hi, sorry for asking here as it is not really an issue (didn't know where else to do it): does Projeny-based project support Unity Cloud Build service?

in MonoBehaviour 1 I have a call: ``` await messageBroker.Receive(); Debug.Log("Received"); ``` while in the other I have: ``` messageBroker.Publish(); Debug.Log("Published"); ``` my problem is that program seems to stop...

Hi, OfComponent extension has a constraint that T is a Component. That used to be a requirement for a call to GetComponent() but that is no longer the case. It...

when using: ``` using (LifetimeScope.EnqueueParent(parent)) { await SceneManager.LoadSceneAsync("...", LoadSceneMode.Additive); } ``` things are resolved correctly in child container from parent container but in case of: ``` using (LifetimeScope.EnqueueParent(parent)) { SceneManager.LoadScene("...",...

feature

Hi, in our project we use Option type. Is there a way to register single custom SerializerFactory that would handle all of the concrete instantiations of the generic type? Ideally...

Hi, because filter is attached to the view after creation it is not run for the elements that already in the collection when the view is being created. This breaks...

Hi, errors when trying to build with VS 2019 (16.2.3): ``` 1>C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets(1175,5): error MSB3644: The reference assemblies for .NETFramework,Version=v4.6.2 were not found. To resolve this, install...