lib/jruby_art/creators/creator.rb in jruby_art-0.9.0 vs lib/jruby_art/creators/creator.rb in jruby_art-1.0.0
- old
+ new
@@ -6,11 +6,12 @@
def draw
end
def settings
- size %s, %s, FX2D
+ size %s, %s
+ # pixel_density(2) # here for hi-dpi displays only
# smooth # here
end
CODE
@@ -39,10 +40,11 @@
def draw
end
def settings
- size %s, %s, FX2D
+ size %s, %s
+ # pixel_density(2) # here for hi-dpi displays only
# smooth # here
end
end
CODE