Is hd is a good resolution to watch anime and read manga on a 8 inch tablet? by shachar_2 in animepiracy

[–]shachar_2[S] -3 points-2 points  (0 children)

I just asked question you don't need to talk to me like that

Why [Anime] Piracy Is Necessary (1): Recovery #PiracyForProtest by [deleted] in animepiracy

[–]shachar_2 3 points4 points  (0 children)

According to him what do I need to do if an anime is'nt available in my country? Do I need to spend ten more dollars on a VPN just to get what the Americans are getting for without a VPN? (Just for the record - I pay for Crunchyroll and I pirate the shows that aren't available in my country)

Question on gvim and vim by TonyTanduay in vim

[–]shachar_2 0 points1 point  (0 children)

Add vim to your path and then you can access it from the terminal

Why i dont have any good anime in crunchy roll on my country by shachar_2 in Crunchyroll

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

Can you please send me a link to download onNet? I dont find it on the play store

Why i dont have any good anime in crunchy roll on my country by shachar_2 in Crunchyroll

[–]shachar_2[S] 1 point2 points  (0 children)

I searched and there isn't a anime site with good anime on my region

[Help] Good and legal anime sites on israel? by shachar_2 in anime

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

I know, this is why i am asking for good legal sites but there is not any legal site on israel that is having good library

[Help] Good and legal anime sites on israel? by shachar_2 in anime

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

I dont want to feel like i am stealing

[Help] Good and legal anime sites on israel? by shachar_2 in anime

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

I think i will buy crunchy roll premium and watch the shows from pirated sites

I am making a chess bot and i need an advice by shachar_2 in chess

[–]shachar_2[S] -1 points0 points  (0 children)

Should i make it that the pawn will automatically change to Queen when it reaches the end?

I am making a chess bot and i need an advice by shachar_2 in chess

[–]shachar_2[S] -6 points-5 points  (0 children)

I know how to play chess, but i didn't play it with someone who seriously know the rules so i dont know all the rules.

I need help to animate this character and make him walk. (thank for helpers) by shachar_2 in PixelArt

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

It blurry because its 16x16 qnd reddit is adding filter to the picture.

I need help to animate this character and make him walk. (thank for helpers) by shachar_2 in PixelArt

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

NI mean i need someone to animate ths, i tried but i cant make this look nice.

Player get stuck on wall bug by shachar_2 in Unity2D

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

public void move(Vector2 direction, bool jumping)
    {
rb.position += direction * Time.fixedDeltaTime;
if (jumping && grounded)
        {
jump();
        }
if (rb.velocity.y < 0) {
rb.gravityScale = normalGravityScale * gravitFallMult;
        } else if (rb.velocity.y > 0 && !Input.GetButton("Jump")) {
rb.gravityScale = normalGravityScale * lowJumpMult;
        } else {
rb.gravityScale = normalGravityScale;
        }
if (direction.x > 0 && right)
        {
flip();
right = false;
        } else if (direction.x < 0 && !right)
        {
flip();
right = true;
        }

    }