love.graphics.setPointStyle (日本語)

LÖVE 0.10.0 から廃止
この関数は以降のバージョンでは非対応です。


の種類を設定します。

O.png smooth な点は多くのグラフィックス・ドライバにおいて悪評が高くて不具合は多いです。異なるドライバ間との整合性を高めるために点の種類として "rough" を使用してください。  


関数

概要

love.graphics.setPointStyle( style )

引数

PointStyle style
新しい点の描画方法。

返値

ありません。

用例

点の種類を使用して love.graphics.getPointStyle の設定を相互に切り替えます (smooth/rough)。

if love.graphics.getPointStyle() == "rough" then
   love.graphics.setPointStyle("smooth")
else
   love.graphics.setPointStyle("rough")
end

関連



そのほかの言語