Added Flat TV support

This commit is contained in:
jonpas 2015-06-27 04:23:21 +02:00
parent a7d58f3b9f
commit 34b270d89d
3 changed files with 7 additions and 2 deletions

View File

@ -54,6 +54,7 @@ class CfgVehicles {
class Land_Laptop_unfolded_F {MACRO_SYNC BOTH};
class Land_Laptop_device_F {MACRO_SYNC BOTH};
class Land_PCSet_01_screen_F {MACRO_SYNC BOTH};
class Land_FlatTV_01_F {MACRO_SYNC BOTH};
class Land_HandyCam_F {MACRO_SYNC CONTROLLER};
class Land_MobilePhone_smart_F {MACRO_SYNC CONTROLLER};
@ -98,6 +99,10 @@ class CfgVehicles {
class Land_PCSet_01_screen_F: Items_base_F {
MACRO_INTERACT_INIT
};
class Land_FlatTV_01_F: Items_base_F {
MACRO_INTERACT_INIT
};
class Land_HandyCam_F: Items_base_F {
MACRO_INTERACT_INIT
};

View File

@ -37,7 +37,7 @@ _actions = [];
},
{true},
{},
[_objects,_x]
[_objects, _x]
] call EFUNC(interact_menu,createAction),
[],
_controller

View File

@ -12,5 +12,5 @@
#include "\z\ace\addons\main\script_macros.hpp"
#define CLASSNAMES_OBJECTS "Land_MapBoard_F"
#define CLASSNAMES_BOTH "Land_Laptop_unfolded_F", "Land_Laptop_device_F", "Land_PCSet_01_screen_F"
#define CLASSNAMES_BOTH "Land_Laptop_unfolded_F", "Land_Laptop_device_F", "Land_PCSet_01_screen_F", "Land_FlatTV_01_F"
#define CLASSNAMES_CONTROLLERS "Land_HandyCam_F", "Land_MobilePhone_smart_F", "Land_Tablet_01_F", "Land_PCSet_01_keyboard_F", "Land_PCSet_01_mouse_F", "Land_GamingSet_01_controller_F"