Difference between revisions of "love.math.newRandomGenerator (한국어)"

(Created page with "{{newin|0.9.0|090|type=function}} 새로운 RandomGenerator를 생성합니다. == 함수 == === 형식 === <source lang="lua"> rng = love.mat...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
새로운 [[RandomGenerator (한국어)|RandomGenerator]]를 생성합니다.
+
새로운 [[RandomGenerator (한국어)|난수 생성기]]를 생성합니다.
 
== 함수 ==
 
== 함수 ==
 
=== 형식 ===
 
=== 형식 ===
Line 12: Line 12:
  
 
== 함수 ==
 
== 함수 ==
[[RandomGenerator:setState|RandomGenerator:setState (한국어)]]를 참조하세요.
+
[[RandomGenerator:setState (한국어)|RandomGenerator:setState]]를 참조하세요.
 
=== 형식 ===
 
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
Line 23: Line 23:
  
 
== 함수 ==
 
== 함수 ==
[[RandomGenerator:setState|RandomGenerator:setState (한국어)]]를 참조하세요.
+
[[RandomGenerator:setState (한국어)|RandomGenerator:setState]]를 참조하세요.
 
=== 형식 ===
 
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
Line 45: Line 45:
 
* [[Constructs::RandomGenerator (한국어)]]
 
* [[Constructs::RandomGenerator (한국어)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=새로운 RandomGenerator를 생성합니다.}}
+
{{#set:Description=새로운 난수 생성기를 생성합니다.}}
 
== 다른 언어 ==
 
== 다른 언어 ==
 
{{i18n|love.math.newRandomGenerator}}
 
{{i18n|love.math.newRandomGenerator}}

Latest revision as of 15:21, 9 January 2014

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

새로운 난수 생성기를 생성합니다.

함수

형식

rng = love.math.newRandomGenerator( )

매개변수

없음.

리턴값

RandomGenerator (한국어) rng
난수 생성기.

함수

RandomGenerator:setState를 참조하세요.

형식

rng = love.math.newRandomGenerator( state )

형식

number (한국어) state
이 객체에 사용할 시드값.

리턴값

RandomGenerator (한국어) rng
난수 생성기.

함수

RandomGenerator:setState를 참조하세요.

형식

rng = love.math.newRandomGenerator( low, high )

매개변수

number (한국어) low
이 객체에 사용할 64비트 시드값의 하위 32비트를 표현하는 정수.
number (한국어) high
이 객체에 사용할 64비트 시드값의 상위 32비트를 표현하는 정수.

리턴값

RandomGenerator (한국어) rng
난수 생성기.

예제

새로운 RandomGenerator 객체를 만들어 1부터 100 사이의 수 가운데 하나를 생성합니다.

function love.load()
	rng = love.math.newRandomGenerator()
	randomNumber = rng:random(1,100)
end

같이 보기

다른 언어