Alex Saveau
Alex Saveau
I haven't checked, though `asset_server.load` returns strong handles (doubled checked with `handle.is_strong()` which returns true) so I don't think that's the issue.
0.7, thanks! BTW, the repro code I posted can just be pasted into examples/2d/twinkle.rs and you'll see the bug.
Reposting here for visibility: > I'm finding that I still don't understand how entities, components, or bundles work. For example I just discovered that you can write this query without...
BTW, I'm happy review any new chapters from the someone-that-doesn't-know-anything perspective. :)
Some more questions I've run across: - If a system includes a top-level guard such as `mouse_button_input.just_pressed(MouseButton::Left)`, is it faster to put that in run criteria so that the actual...
One more: if only using a query for `contains`, is it better to write it like this `Query` or this `Query`.
I'm getting the same issue: ``` java.lang.ClassCastException: com.android.tools.idea.run.ConnectedAndroidDevice cannot be cast to com.android.ddmlib.IDevice java.lang.RuntimeException: java.lang.ClassCastException: com.android.tools.idea.run.ConnectedAndroidDevice cannot be cast to com.android.ddmlib.IDevice at com.developerphil.adbidea.compatibility.BackwardCompatibleGetter.get(BackwardCompatibleGetter.java:19) at com.developerphil.adbidea.ui.MyDeviceChooser$MyDeviceTableModel.getValueAt(MyDeviceChooser.java:422) at javax.swing.JTable.getValueAt(JTable.java:2717) at com.intellij.ui.table.JBTable.calculateRowHeight(JBTable.java:162) at...
@djeedai this needs #37 (and #44 if that goes through) to be done right. Once I have the new testing framework I'll wrap up the sequence elapsed implementation.
@djeedai this should be ready to go implementation wise! I'm waiting on #37 to write proper tests (which is waiting on the reverted commits being restored).
Sweet! I updated #37 and #44.