Search:

Type: Posts; User: aesguitar

Search: Search took 0.07 seconds.

  1. Re: As my player goes lower on-screen my tiles become smaller in height? D:

    Don't be discouraged. It takes a long time to learn. There are different ways to learn than through videos. projecteuler.net is a great programming challenge website. Java works well for most of the...
  2. Re: As my player goes lower on-screen my tiles become smaller in height? D:

    My advice, follow a different video. Static means that a variable can be accessed (changing is a form of accessing) by simply evoking the class name.



    //for example
    Math.PI; // is a public...
  3. Re: As my player goes lower on-screen my tiles become smaller in height? D:

    Well, based off context... Your Block class extends Rectangle. Engine.sY is a static variable that should looks like it should never have a null value. Also, in your Block class, when you call y and...
  4. Re: As my player goes lower on-screen my tiles become smaller in height? D:

    static means you don't have to create an object of that type to use it. for example in the Math class, not only do you not need to create a Math object, you can't.



    //try putting this into...
  5. Re: As my player goes lower on-screen my tiles become smaller in height? D:

    In the future, post code like using the
    tags. Next, the program won't run for me on Eclipse. It can't find the main method. Please, explain you program more fully.
Results 1 to 5 of 5