remove example

This commit is contained in:
Alexander Klingenbeck 2023-07-18 22:51:03 +02:00
parent 3265db9435
commit 4cd35d647e
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
import { Timers } from "./common/timers.js"
const timers = new Timers()
traceLog(LOG_INFO, clamp(-1.5,0,5))
traceLog(LOG_INFO, vector2Distance(new Vector2(0,0), new Vector2(1,0)))
initWindow(640, 480, "Javascript Tests")
const pos = new Vector2(getScreenWidth()/2,getScreenHeight()/2)
const radius = 100
timers.setTimeout(() => pos.x += 200, 2000)
while(!windowShouldClose()){
timers.update(getFrameTime())
beginDrawing()
clearBackground(RAYWHITE)
drawCircle(pos.x,pos.y, radius, LIME)
endDrawing()
}
closeWindow()