cutRsc: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " |game1= ofp |version1= 1.00 |game2= arma1 |version2= 1.00 |game3= arma2 |version3= 1.00 |game4= arma2oa |version4= 1.51 |game5= tkoh |version5= 1.00 |game6= arma3 |version6= 0.50 " to " |game1= ofp |version1= 1.00 |game...)
m (Text replacement - " " to " ")
Line 63: Line 63:


|r2= [[Nothing]]
|r2= [[Nothing]]
 
 
|x1= <code>[[cutRsc]] ["binocular", "PLAIN"];
|x1= <code>[[cutRsc]] ["binocular", "PLAIN"];
[[cutRsc]] ["binocular", "PLAIN", 2];
[[cutRsc]] ["binocular", "PLAIN", 2];

Revision as of 20:57, 10 June 2021

Hover & click on the images for description

Description

Description:
Display a resource defined in RscTitles of the mission's Description.ext, the campaign's description.ext or the global config.
Arma 3
For greater efficiency and ease of modability, it is recommended to use named layers available with alternative syntax since Arma 3 v1.58.
To avoid conflicts with existing layers it is recommended to register a layer with BIS_fnc_rscLayer and to start the name with a TAG:

("TAG_myLayer" call BIS_fnc_rscLayer) cutRsc ["myRsc","PLAIN"];

"TAG_myLayer" cutRsc ["myRsc","PLAIN"];
Groups:
GUI Control

Syntax

Syntax:
cutRsc [class, effect, speed, showInMap]
Parameters:
[class, effect, speed, showInMap]: Array
class: String - the class name of the resource. ("Default" will remove the current resource.)
effect: String - one of "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 (Optional, default -1): Number - Time in seconds to fade in resource.
showInMap (Optional, default true): Boolean - false to hide the text when the map is opened.
Return Value:
Nothing

Alternative Syntax

Syntax:
layer cutRsc [class, effect, speed, showInMap]
Parameters:
layer: Number or String
  • Number - layer number on which the effect is shown, where 0 is the back most. Layer number is rounded to the nearest integer and also cannot be negative. Layer 99.5 will be treated as layer 100
  • String - layer name on which the effect is shown. Layer names are CaSe SeNsItIvE.
[class, effect, speed, showInMap]: Array
class: String - the class name of the resource. ("Default" will remove the current resource.)
effect: String - one of "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:
cutRsc ["binocular", "PLAIN"]; cutRsc ["binocular", "PLAIN", 2]; cutRsc ["binocular", "PLAIN", 2, false];
Example 2:
2 cutRsc ["binocular", "PLAIN", 2];
Example 3:
_layer = "layer1" cutRsc ["binocular", "PLAIN", 2];
Example 4:
// Create IGUI display // Such display can be closed with closeDisplay command or by overwriting the same cut layer with another output. // Note that "Unload" EH for some reason does not work with such display. "someLayer" cutRsc ["RscTitleDisplayEmpty", "PLAIN"]; private _display = uiNamespace getVariable "RscTitleDisplayEmpty";

Additional Information

See also:
allCutLayerstitleRsccutTextcutObjcutFadeOutsetTitleEffectallActiveTitleEffects

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on 30 Jun, 2008
Dr_Eyeball
Using cutRsc (instead of titleRsc) for a HUD has the benefits of:
  • having the HUD automatically hide itself when you access the map and redisplay itself after closing the map.
  • using the 'Direct communication' chat channel messages will not interfere with the HUD by hiding it.
Posted on 17 Oct, 2013
Killzone_Kid
Regarding removing current resource with cutRsc ["Default", "PLAIN"]. If it does't work and it gives you error message that "Default" is not found, add it by yourself to RscTitles in description.ext so it looks like this:
class RscTitles
{
	class Default 
	{
		idd = -1;
		fadein = 0;
		fadeout = 0;
		duration = 0;
	};
};

Alternatively, you can use cutText, yes cutText command to cancel your resources. As Karel Moricky explains: "All 'cut' commands are in the same layer, the same as all 'title' commands are in another one." So to remove cutRsc resource execute cutText on the same layer:

cutRsc ["myRsc", "PLAIN"]; // show cutText ["", "PLAIN"]; // remove

10 cutRsc ["myRsc", "PLAIN"]; // show 10 cutText ["", "PLAIN"]; // remove

Also if you use layers would be a good idea to register them with BIS_fnc_rscLayer to avoid possible clashes with other layers: ("myLayerName" call BIS_fnc_rscLayer) cutRsc ["myRsc","PLAIN"]; // show ("myLayerName" call BIS_fnc_rscLayer) cutText ["","PLAIN"]; // remove

You can also immediately remove resource with cutFadeOut command:123 cutFadeOut 0;