DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
CarTent.c
См. документацию.
1class CarTent extends TentBase
2{
3 void CarTent()
4 {
5 m_ToggleAnimations.Insert( new ToggleAnimations("EntranceO", "EntranceC", OPENING_0), 0 );
6
7 m_ShowAnimationsWhenPitched.Insert( "Body" );
8 //m_ShowAnimationsWhenPitched.Insert( "EntranceO" );
9 m_ShowAnimationsWhenPitched.Insert( "Pack" );
10
11 m_ShowAnimationsWhenPacked.Insert( "Inventory" );
12
13 m_HalfExtents = Vector(1.8, 0.33, 3.4);
14 }
15
16 override void EEInit()
17 {
18 super.EEInit();
19 }
20
21 override void OnItemLocationChanged(EntityAI old_owner, EntityAI new_owner)
22 {
23 super.OnItemLocationChanged(old_owner, new_owner);
24 }
25
26 override string GetSoundOpen()
27 {
28 return "CarTent_Door_Open_SoundSet";
29 }
30
31 override string GetSoundClose()
32 {
33 return "CarTent_Door_Close_SoundSet";
34 }
35
36 override bool HasClutterCutter()
37 {
38 return false;
39 }
40
41 //================================================================
42 // ADVANCED PLACEMENT
43 //================================================================
44
45 override bool IsDeployable()
46 {
47 return true;
48 }
49
50 override string GetDeploySoundset()
51 {
52 return "placeCarTent_SoundSet";
53 }
54
55 override string GetLoopDeploySoundset()
56 {
57 return "cartent_deploy_SoundSet";
58 }
59};
Container_Base m_HalfExtents
Определения Building.c:6
override void OnItemLocationChanged(EntityAI old_owner, EntityAI new_owner)
Определения CarTent.c:21
override string GetSoundClose()
Определения CarTent.c:31
override string GetSoundOpen()
Определения CarTent.c:26
override bool IsDeployable()
Определения CarTent.c:45
override bool HasClutterCutter()
Определения CarTent.c:36
override void EEInit()
Определения CarTent.c:16
override string GetDeploySoundset()
Определения CarTent.c:50
override string GetLoopDeploySoundset()
Определения CarTent.c:55
void CarTent()
Определения CarTent.c:3
Определения CarTent.c:2
proto native vector Vector(float x, float y, float z)
Vector constructor from components.