• 0 Posts
  • 68 Comments
Joined 1 年前
cake
Cake day: 2023年6月22日

help-circle
  • It takes a while getting used to anything. Gimp does have a Photoshop keyboard shortcut preset, to ease you into it.

    And gimp does have some parts that are better. For example importing a bunch of images and lining them up on a spritesheet is both faster and easier on Gimp. And both Photoshop and gimp have scripts to do this, but I was never able to get the Photoshop script to work.



  • It is all keyboard shortcuts, though, and you can configure them to all use the same ones. I believe they have a “Photoshop-like” preset you can select too.

    About the RAM, I’m not sure what can be done. I guess it is a tradeoff. I’d probably go with more RAM consumption over Photoshop because I have a lot of RAM, but not everyone do. Considering the price of Photoshop if you didn’t pirate it, it would be cheaper to buy and install more RAM, though.








  • Yeah, a name should describe what it is or does, so if you have two turtles, and let’s say turtle1 wants to shit on turtle2’s lawn, you could name them shittingTurtle and victimTurtle. If the name alone tells you what its purpose is, that saves a lot of time for people looking at your code.

    Is_Turtle is not a bad variable name because it tells you it is a Boolean with “is” and that the Boolean tells you whether something is a turtle or not.

    Also, depending on the language, I suggest either camelCase or snake_case naming of variables. PascalCase is usually for defining classes or in case of C#, methods.