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

Sets the [[love.graphics.point|point]] style.

{{notice|Smooth points are notoriously buggy on a lot of graphics drivers. Use "rough" [[PointStyle|point style]] for increased consistency between different drivers.}}

== 関数 ==
=== 概要 ===
<source lang="lua">
love.graphics.setPointStyle( style )
</source>
=== 引数 ===
{{param (日本語)|PointStyle|style|The new point style.}}
=== 返値 ===
ありません。
== 用例 ==
Toggle between [[PointStyle|point styles]] with the help of [[love.graphics.getPointStyle]].
<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.setPointSize (日本語)]]
* [[love.graphics.getPointStyle (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Sets the [[love.graphics.point|point]] style.}}
{{#set:Since=000}}
{{#set:Sub-Category=State (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.setPointStyle}}