Ryan Nielson

Results 11 comments of Ryan Nielson

Is there any reason we shouldn't just link to https://github.com/videolan/vlc-unity or is this and the asset store package different?

It uses `GetAxis(string)` internally but `string` is only allocated when the binding is created so it should be better than calling `GetAxis(“Jump”)` in every update for example. Best to give...

Yep, that should be the case. If you define your input name string as an constant instance variable in your component you should get similar behaviour. Also if you haven’t...

Thanks for the heads up, never though about this. I'll look into adding it soon. You're right about backwards compatibility as well. I wouldn't really want to go to 2.0.0...

If you could attach a demo project to this issue showing the behavior that might help me or others figure out the issue. I haven't been using this project lately,...

I haven't used this in a while, but last time I did the instructions in the "Usage" section worked fine. It should create the render texture automatically when you press...

This system uses 2 cameras and a quad to render your pixellated view. 1. The camera named PixelCamera2D renders your scene to a render texture, and it should be the...

Any chance you can upload a zip of a simple project that demonstrates this? It seems super strange.

I'm seeing this on PRs that don't have the `pullpreview` label. It makes an error show up in the PR, but isn't blocking. I think it's because `GithubSync#guess_action_from_event` may not...

@crohr Here ya go. Basically I only want to run on PRs with the `pullpreview` label, and not run otherwise. ``` name: PullPreview on: pull_request: types: [labeled, unlabeled, synchronize, closed,...