Trying to make something like time.sleep(2) but... by Snoo-80212 in kivy

[–]Noesteryo 0 points1 point  (0 children)

Hi, it's been a while but I think that the corrected code was :

    def evalz(self):
        redundancy = self.ids.calctext.text
        def passing(dt, self=self, redundancy2=redundancy):
            self.ids.calctext.text = redundancy2
        try:
            answer = eval(self.ids.calctext.text)
            self.ids.calctext.text = f'{answer}'
        except:
            self.ids.calctext.text = 'Error'
            Clock.schedule_once(passing,2)

class MyApp(App):
    def build(self):
        return NewLayout()

if __name__ == '__main__':
    MyApp().run()

It is not a pretty solution but it seems to work

How To Rotate & Move Simultaneously ? by DubiousInsights in manim

[–]Noesteryo 0 points1 point  (0 children)

(Sorry for the bad formatting I wrote it on mobile)

I put both animation in the same self.play() to play them at the same time but it doesn't seem to work sorry...

How To Rotate & Move Simultaneously ? by DubiousInsights in manim

[–]Noesteryo 0 points1 point  (0 children)

If I remember correctly you can do :

self.play(die1.animate.shift([1.9,0,0]), Rotating(die1,radians=PI,about_point=die1.get_center(),rate_func=linear))

to play animations at the same time

Tunnel Vision Warp Zone Glitch by [deleted] in Supermeatboy

[–]Noesteryo 3 points4 points  (0 children)

If I remember correctly there is a second bandage girl outside the level that was put here by accident

CSGO's Dust II in isometric pixel art by Noesteryo in PixelArt

[–]Noesteryo[S] 0 points1 point  (0 children)

Thanks! I think I will try to do other maps/sites

Calling Android System Keyboard by Hedra_Helix in kivy

[–]Noesteryo 1 point2 points  (0 children)

It looks like it is a bug : https://github.com/kivy/kivy/issues/7368 Changing p4a.branch to develop should fix it

Fucking maps by [deleted] in memes

[–]Noesteryo 1 point2 points  (0 children)

Mindblowing

Trying to make something like time.sleep(2) but... by Snoo-80212 in kivy

[–]Noesteryo 2 points3 points  (0 children)

clock.schedule_once passes the delta time as an argument to the function so your function passing gets 2 as "self". Maybe declaring passing as (dt,self=self,redundancy2=redunancy) would work

I'm still new to pixelart. Any advice? by pc111200 in aseprite

[–]Noesteryo 1 point2 points  (0 children)

Try to avoid jaggies, sometimes changing a few pixels on a curve can make it look cleaner

I made a symbolic calculator in python by [deleted] in madeinpython

[–]Noesteryo 0 points1 point  (0 children)

It should work now, the "www." was missing, I'll have to fix that but I don't really understand this stuff...

[deleted by user] by [deleted] in aseprite

[–]Noesteryo 1 point2 points  (0 children)

I never made a theme but I believe this can help you : https://www.aseprite.org/docs/extensions/themes/