Guest User

Untitled

a guest
Sep 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function initCanvas(w, h)
  2. local canvas = document:createElement("canvas")
  3. canvas.id = "canvas"
  4. canvas.width = w
  5. canvas.height = h
  6. canvas.style.width = canvas.width .. 'px'
  7. canvas.style.height = canvas.height .. 'px'
  8. document:getElementsByTagName('body')[0]:appendChild(canvas)
  9. end
  10. initCanvas(300, 300)
Add Comment
Please, Sign In to add comment