Brendan Turner

Results 18 comments of Brendan Turner

This error occurs when attempting to create the RSS user for the first time ``` Apr 01 21:30:37 matrix matrix-dimension[231286]: Apr-1-2021 21:30:37.706 +00:00 info [AppserviceStore] Registering to own @_botler_rss_notifications_=40beeman=3afoglet.io:foglet.io in...

You'll need to do some manual work to make them readily usable. Example: ``` import React from 'react'; const InfoTile = ({ children, theme, icon, title, stats, content }) =>...

Removing this snippet fixed it for me: ```javascript var core = function () { try { return require("core-js/modules/_core"); } catch (e) { // Older versions of core-js had a different...

Yes. Works perfectly fine on 1.6 (except for an unrelated issue on iOS 9 that I'm still working out). > -------- Original Message -------- > Subject: Re: [meteor/cordova-plugin-meteor-webapp] Crash on...

So imagine you're making a tile-based game. You're gonna be swapping the animations a lot. 1. standing still, `idle_down` on repeat 2. walking left, swap `idle_down` for `walk_left` on repeat...

I've chosen to use `benimator` (at the very least in it's current form) in a game I'm working on. I would be glad to give feedback on any design ideas...

Using [bevy-simple-state-machine](https://github.com/LucaRickler/bevy-simple-state-machine) as a reference I was able to implement something that works for `benimator` over the weekend Here's the crux of the code. Also, `state_machine.animation_finished()` checks `benimator` to see...