Pasha Stetsenko
Pasha Stetsenko
I imagine you could kill an NPC, who drops a sword on the ground, then you pick it up and it goes either in your inventory or maybe directly into...
`angle` measures rotation from the original position. This property tells you what the original orientation is (relative to the screen).
* `nativeAngle` * `intrinsicAngle` I think it's best to stick to the naming pattern "*Angle", to make it clear that this property is a kind of angle and not anything...
As it turns out, we already have implementation of one kind of noise available: the `SimplexNoise` class in the `vector_math_64` library (also adopted from Stefan Gustavson's work). Unfortunately, they don't...
What you can do here is to create a mixin ```dart mixin Poolable on Component { @override void onRemove() { (findParent() as HasObjectPools).pool.returnObject(this); super.onRemove(); } } mixin HasObjectPools on Game...
`Color` has a complexity of a single int; whereas the two Cache properties contain a pointer and a list each.
The point here is not to get into the habit of kicking this can down the road. If we require that every PR should include tests, examples, documentation, and **migration...
> Hmm, thinking about this some more I don't think we should have a file that is updated in the PR, because then we will have the same problem as...
In order to make opacity effect applicable to any component, we need to have component wrappers (#911), which requires changes in the `ComponentSet` and `QueryableOrderedSet` (#976, item 3).
Wendy is on vacation. Erin, would you want to review/merge, or wait for Wendy's return?