Sha256: c50fbaeadf12d760f2caab634891fe36ace61bd4d08a613ce015a89101dc2e22
Contents?: true
Size: 330 Bytes
Versions: 16
Compression:
Stored size: 330 Bytes
Contents
# -*- coding: utf-8 -*- # http://dxruby.sourceforge.jp/DXRubyReference/200953122575875.htm require 'dxruby' image = Image.load('data.png') # data.pngを読み込む x = 0 y = 0 Window.loop do x = x + Input.x # x座標の更新 y = y + Input.y # y座標の更新 Window.draw(x, y, image) # data.pngを描画する end
Version data entries
16 entries across 16 versions & 1 rubygems