titleRsc: Difference between revisions

From Bohemia Interactive Community
m (formatting)
No edit summary
(12 intermediate revisions by 2 users not shown)
Line 2: Line 2:


|game1= ofp
|game1= ofp
|version1= 1.00
|version1= 1.00


|game2= ofpe
|game2= ofpe
|version2= 1.00
|version2= 1.00


|game3= arma1
|game3= arma1
|version3= 1.00
|version3= 1.00


|game4= arma2
|game4= arma2
|version4= 1.00
|version4= 1.00


|game5= arma2oa
|game5= arma2oa
 
|version5= 1.50
|version5= 1.51


|game6= tkoh
|game6= tkoh
|version6= 1.00
|version6= 1.00


|game7= arma3
|game7= arma3
|version7= 0.50
|version7= 0.50


Line 47: Line 40:


|r1= [[Nothing]]
|r1= [[Nothing]]
 
|x1= <code>[[titleRsc]] ["BIS", "PLAIN"]</code>


|seealso= [[titleText]], [[titleObj]], [[cutRsc]], [[allActiveTitleEffects]]
|x1= <sqf>titleRsc ["BIS", "PLAIN"];</sqf>
 
|seealso= [[titleText]] [[titleObj]] [[cutRsc]] [[allActiveTitleEffects]] [[activeTitleEffectParams]]  
}}
}}


<dl class="command_description">
<dl class="command_description">
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on 30 Jun, 2008</dd>
<dd class="notedate">Posted on 30 Jun, 2008</dd>
Line 62: Line 56:
* using the 'Direct communication' chat channel messages will interfere with the HUD by hiding it, since it appears to use the same 'resource layer'.
* using the 'Direct communication' chat channel messages will interfere with the HUD by hiding it, since it appears to use the same 'resource layer'.
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on September 25, 2014 - 10:04 (UTC)</dd>
<dd class="notedate">Posted on 2014-09-25 - 10:04 (UTC)</dd>
<dt class="note">[[User:Kenoxite|Kenoxite]]</dt>
<dt class="note">[[User:Kenoxite|Kenoxite]]</dt>
<dd class="note">
<dd class="note">
Line 69: Line 63:


</dl>
</dl>
{{Note
|user= Honger
|timestamp= 20230828163424
|text= The "Default" resource class does not exist in Arma 3 as of 2.12 version. Use a different class to remove resources that are not finite.
}}

Revision as of 17:34, 28 August 2023

Hover & click on the images for description

Description

Description:
Displays a resource defined in RscTitles. Also see cutRsc, with these two commands you can show two different resources at once.
Arma 3
Multiple layers and map overlays are possible with cutRsc which provides more options and handles layers better.
Groups:
GUI Control

Syntax

Syntax:
titleRsc [text, type, speed, showInMap]
Parameters:
text: String - The class name of the resource. ("Default" will remove the current resource.)
type: String - Can be: "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See Title Effect Types for more information about these values.
speed: Number - (Optional, default -1) Time in seconds to fade in resource
showInMap: Boolean - (Optional, default true) |False to hide the text when the map is opened.
Return Value:
Nothing

Examples

Example 1:
titleRsc ["BIS", "PLAIN"];

Additional Information

See also:
titleText titleObj cutRsc allActiveTitleEffects activeTitleEffectParams

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note
Posted on 30 Jun, 2008
Dr_Eyeball
Using titleRsc (unlike cutRsc) for a HUD will mean:
  • the HUD will remain visible when you access the map and overlay it.
  • using the 'Direct communication' chat channel messages will interfere with the HUD by hiding it, since it appears to use the same 'resource layer'.
Posted on 2014-09-25 - 10:04 (UTC)
Kenoxite
In OFP/CWA any <x>Rsc will hide all the elements of the HUD, including the map.
Honger - c
Posted on Aug 28, 2023 - 16:34 (UTC)
The "Default" resource class does not exist in Arma 3 as of 2.12 version. Use a different class to remove resources that are not finite.