love.graphics.getPointStyle (日本語)

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


の種類を取得します。

関数

概要

style = love.graphics.getPointStyle( )

引数

なし。

返値

PointStyle style
現在の点の描画方法。

Examples

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

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

関連



そのほかの言語