Difference between revisions of "love.thread.getChannel"

m
m
Line 9: Line 9:
 
{{param|string|name|The name of the channel you want to create or retrieve.}}
 
{{param|string|name|The name of the channel you want to create or retrieve.}}
 
=== Returns ===
 
=== Returns ===
{{param|Channel|channel|A named channel object which can be further manipulated.}}
+
{{param|Channel|channel|The Channel object associated with the name.}}
  
 
== See Also ==
 
== See Also ==
Line 15: Line 15:
 
* [[Constructs::Channel]]
 
* [[Constructs::Channel]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Creates or retrieves a new named thread channel.}}
+
{{#set:Description=Creates or retrieves a named thread channel.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.thread.getChannel}}
 
{{i18n|love.thread.getChannel}}

Revision as of 08:33, 18 December 2013

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

Creates or retrieves a named thread channel.

Function

Synopsis

channel = love.thread.getChannel( name )

Arguments

string name
The name of the channel you want to create or retrieve.

Returns

Channel channel
The Channel object associated with the name.

See Also

Other Languages