Difference between revisions of "love.graphics.getLineWidth (日本語)"

m
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 +
{{newin (日本語)|[[0.3.2 (日本語)|0.3.2]]|032|type=関数}}
 
現在の線の幅を取得します。
 
現在の線の幅を取得します。
 
== 関数 ==
 
== 関数 ==
Line 22: Line 23:
 
== 関連 ==
 
== 関連 ==
 
* [[parent::love.graphics (日本語)]]
 
* [[parent::love.graphics (日本語)]]
 +
* [[love.graphics.setLineWidth (日本語)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=現在の線の幅を取得します。}}
 
{{#set:Description=現在の線の幅を取得します。}}
Line 27: Line 29:
 
{{#set:PrettySince=0.3.2}}
 
{{#set:PrettySince=0.3.2}}
 
{{#set:Sub-Category=State (日本語)}}
 
{{#set:Sub-Category=State (日本語)}}
 +
 
== そのほかの言語 ==
 
== そのほかの言語 ==
 
{{i18n|love.graphics.getLineWidth}}
 
{{i18n|love.graphics.getLineWidth}}

Latest revision as of 20:03, 21 July 2023

LÖVE 0.3.2 から使用可能
この関数は以前のバージョンでは非対応です。

現在の線の幅を取得します。

関数

概要

width = love.graphics.getLineWidth( )

引数

なし。

返値

number width
現在の線の幅。

注釈

この関数は 0.8.0 では動作しませんが、 0.9.0 では修正されています。これを回避するために 0.8.0 では次のスニペットを使用してください:

love.graphics._getLineWidth = love.graphics.getLineWidth
love.graphics._setLineWidth = love.graphics.setLineWidth
function love.graphics.getLineWidth() return love.graphics.varlinewidth or 1 end
function love.graphics.setLineWidth(w) love.graphics.varlinewidth = w; return love.graphics._setLineWidth(w) end

関連



そのほかの言語