Jump to content

Recommended Posts

Question, can i set up a GUI on an game object like a pc mointor or somthing like that....

Second, if you see in dlc tanks we have a 3d space with 1-2-3 monitors...how does this three monitors setted up?😀

Share this post


Link to post
Share on other sites
8 hours ago, ZeroAinz said:

Question, can i set up a GUI on an game object like a pc mointor or somthing like that....

No. You can open a full screen GUI when you walk to the monitor and execute a mouse wheel action for example. But you cannot display it directly on the monitor.

Unless you make tons of screenshots, and display them on the monitor, but you couldn't click on it and such.

 

8 hours ago, ZeroAinz said:

Second, if you see in dlc tanks we have a 3d space with 1-2-3 monitors...how does this three monitors setted up?

I don't know what specifically are you asking about. What is your intention what do you want to do?

Share this post


Link to post
Share on other sites
11 hours ago, ZeroAinz said:

Question, can i set up a GUI on an game object like a pc mointor or somthing like that....

 

Well it can be done in a similar way, so a dialog with an object with controls on it:

class RscTestObjectUI
{
	idd=-1;
	class objects
	{
		class TestObject: RscObject
		{
			type=82;
			idc=-1;
			scale=0.2;
			model="\A3\Misc_F\Helpers\UserTexture1m.p3d";
			position[]={0,0,0.2};
			positionBack[]={0,0,0.2};
			inBack=0;
			enableZoom=1;
			zoomDuration=0.5;
			direction[]={1,0.25,1};
			up[]={0.25,1,0};
			class Areas
			{
				class Usertexture
				{
					selection="usertexture";
					class controls
					{
						class Test: RscText
						{
							text="Schnobble";
							sizeEx=0.30000001;
							colorText[]={0,1,0,1};
							colorBackground[]={0,1,0,1};
							x=0;
							y=0;
							w=1;
							h=0.5;
							shadow=0;
						};
						class Picture: RscPicture
						{
							text="a3\Ui_f\data\Logos\bi_white_ca.paa";
							x=0;
							y=0.5;
							w=0.5;
							h=0.5;
						};
					};
				};
			};
		};
	};
};

This is from the a3\ui_f\config.cpp, also @killzone_kid did something like this: http://killzonekid.com/arma-scripting-tutorials-gui-part-6/

Also this post by @HazJ: 

 

Share this post


Link to post
Share on other sites

i mean somethin like this screens...

ss_b3255c49326dac4ef9e34628929abad668cfd

how to do a thing like this...or, this is just a surface with animated texture ?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×