Dmitriy Shmilo
Dmitriy Shmilo
Using Swimat Version 1.6.2 (20) with XCode 10.1. The following is a Swimat output when not using a trailing closure. ```swift Observable.combineLatest(self.stepName, self.stepDuration, resultSelector: { name, duration -> Bool in...
My service interface looks like this: ``` public interface IMyService { @GET("/myOperation") Entitiy[] myOperation(); } ``` I build the service like this: ``` new Wasp.Builder(context) .setEndpoint(MY_ENDPOINT) .setParser(new MyGsonParser()) .setRequestInterceptor(new MyRequestInterceptor(context))...
- Add current velocity for each particle. - Add hardcoded constant acceleration. - Add hardcoded maximum velocity. - Apply acceleration to each particle, if it's falling down. - Loop through...
Particles with liquid behavior should allow other particles to swap places, effectively displacing liquids when solids are falling into them.
When on a flat surface, liquids shift to the left and then to the right side. Liquid particles are supposed to shift back and forth, but they get stuck on...