{{oldin (日本語)|[[0.10.0 (日本語)|0.10.0]]|100|type=関数}}

Gets the current [[love.graphics.point|point]] style.
== 関数 ==
=== 概要 ===
<source lang="lua">
style = love.graphics.getPointStyle( )
</source>
=== 引数 ===
なし。
=== 返値 ===
{{param (日本語)|PointStyle|style|The current point style.}}
== 用例 ==
Toggle between [[PointStyle|point styles]] with the help of [[love.graphics.setPointStyle]].
<source lang="lua">
if love.graphics.getPointStyle() == "rough" then
   love.graphics.setPointStyle("smooth")
else
   love.graphics.setPointStyle("rough")
end
</source>
== 関連 ==
* [[parent::love.graphics (日本語)]]
* [[love.graphics.point (日本語)]]
* [[love.graphics.setPointStyle (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Gets the current point style.}}
{{#set:Since=000}}
{{#set:Sub-Category=State (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.getPointStyle}}