Jump to content

DimitriAki

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by DimitriAki

  1. 5 years ago I wanted to learn programming. Still don't know how they make a script for a game.

    I mean i know how to make make up a website with HTML and CSS. But i guess that is something totally different.

     

    A lot of people say that programming is pretty easy once you know the basics. Like Variables Loops and something new I've learned Tables. i mean u can tell me what a Loop is but i will never shake this out of my head >>>

     

    --Create a window

    window = Window:Create()

     

    --Create a rendering context

    context = Context:Create(window)

     

    --While loop

    while window:KeyHit(Key.Escape)==false do

     

    --Set the drawing color and clear the screen

    context:SetColor(0,0,0)

    context:Clear()

     

    --Set the drawing color and blend mode

    context:SetColor(1,1,1)

    context:SetBlendMode(Blend.Alpha)

     

    --Draw some text onscreen

    context:DrawText("PRESS ESCAPE TO END THE PROGRAM.",2,2)

     

    --Update the screen

    context:Sync()

    end

     

    So my point is. Are there any specific ways to learn programming or replace programming in some way for people that are struggling with this problem. This is something that should not make someone give up their idea because he or she can not write a code.

     

     

     

     

     

    thanks for reading,

     

    Jefferey Oertel

    2D/3D Artist

×
×
  • Create New...