i
带有webgl的快速1kb子画面系统。
特征
:leaf_fluttering_in_wind: 最小,gzip仅为1kb
:cyclone: 高性能,60 FPS
利用
import { create } from './src/index.js'
const stage = create ( '#canvas' )
const sprite = stage . add ( 'hj.png' )
function loop ( ) {
sprite . x = Math . random ( ) * stage . gl . canvas . width
sprite . y = Math . random ( ) * stage .
1