User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







lua:codea:stargenerator:main.lua
-- stars
function setup()   
    displayMode(FULLSCREEN)
    createstars()
    checkagain = false
end
 
function createstars()
    stars = {}
    for i = 1,175 do 
        --rx = math.random(1,1200)
       -- ry= math.random(1,800)
        s= Star(true)
        --u = { x=rx, y=ry}
      table.insert(stars,s)
    end   
    for i = 1,50 do 
        --rx = math.random(1,1200)
       -- ry= math.random(1,800)
        s= Star(false)
        --u = { x=rx, y=ry}
      table.insert(stars,s)
    end  
 
end
 
-- This function gets called once every frame
function draw()
    -- This sets a dark background color 
    background(0, 0, 0, 255)
 
 
 
     for a,b in pairs(stars) do
        b:draw()
     end 
     movestars()
 
end
 
function movestars()
    for b,s in pairs(stars) do
        s:move()
    end
end

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
lua/codea/stargenerator/main.lua.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz