Anton Chekulaev

Results 83 comments of Anton Chekulaev
trafficstars

@czyzby probably I found what is origin problem was about. If I try to parametrize localized string with a value started with `.` (e.g. file extension) it results in ```...

Sure, thanks. I believe this should be enough to reproduce the case: `bundle.properties` ``` key = text {0} text ``` `template.lml` ```xml ```

Well it is possible, no doubts. I just needed to copy most of the code from `ContextInitializer` to process annotations. Which in fact made me feel that if dep. injection...

Thanks for pointing me out, after reading those examples, it seems like I'm still missing some base Autumn architectural concepts. So I see that `Provider` is a good thing that...

Yeah, it could be a good solution. Feels like it will require some extra logic for `Context` or those automatically created `Provider`s, because right now there is no code to...

Oh, you're right, I didn't think it could have come from the original LibGDX code. I made [PR and opened issue for the LibGDX repo](https://github.com/libgdx/libgdx/issues/5023) and only than suddenly realized...

@kotcrab please have a look at https://github.com/libgdx/libgdx/pull/5027 If that's fine with you, I can prepare same PR for *VisUI*

I think we can skip this till the next LibGDX release, because Nate modified `Timer` and made this properly.

I think this should be fairly easy to implement method that can merge a family into another instance.

Sorry for delay. Yeah, it's for sure. The problem is here: ``` public void removeAllEntities() { if (updating || notifying) { for(Entity entity: entities) { entity.scheduledForRemoval = true; } EntityOperation...