fix(braf_air2) Naming clonvention for all classes and paths to use lowercase letters.

This commit is contained in:
2026-08-03 15:19:22 -03:00
parent 3af8760da3
commit 3b99904aa7
1007 changed files with 16549 additions and 16423 deletions
+16 -16
View File
@@ -1,9 +1,9 @@
class BRAF_Rescue_Seat: Items_base_F
class braf_rescue_seat: Items_base_F
{
author="BRAF Team";
author = "BRAF TEAM";
displayName="Rescue Seat";
_generalMacro="BRAF_Rescue_Seat";
model="braf\braf_sar\BRAF_rescue_seat.p3d";
_generalMacro="braf_rescue_seat";
model="braf\braf_sar\braf_rescue_seat.p3d";
editorSubcategory="EdSubcat_Storage";
scope=1;
side=0;
@@ -141,7 +141,7 @@ class BRAF_Rescue_Seat: Items_base_F
{
class Seat_1_Open
{
displayname="<t color='#007209'> Open Seat 01 </t>";
displayname="<t color='#007209'> open seat 01 </t>";
position="seat_01_pos";
showWindow=1;
radius=2;
@@ -152,38 +152,38 @@ class BRAF_Rescue_Seat: Items_base_F
};
class Seat_2_Open: Seat_1_Open
{
displayname="<t color='#007209'> Open Seat 02 </t>";
displayname="<t color='#007209'> open seat 02 </t>";
position="seat_02_pos";
condition="this animationphase 'seat_02' < 0.5";
statement="this animate ['seat_02',1]";
};
class Seat_1_Close: Seat_1_Open
{
displayname="<t color='#9b0000'> Close Seat 01 </t>";
displayname="<t color='#9b0000'> close seat 01 </t>";
position="seat_01_pos";
condition="this animationphase 'seat_01' > 0.5";
statement="this animate ['seat_01',0]";
};
class Seat_2_Close: Seat_1_Open
{
displayname="<t color='#9b0000'> Close Seat 02 </t>";
displayname="<t color='#9b0000'> close seat 02 </t>";
position="seat_02_pos";
condition="this animationphase 'seat_02' > 0.5";
statement="this animate ['seat_02',0]";
};
};
};
class BRAF_Rescue_Basket: BRAF_Rescue_Seat
class braf_rescue_basket: braf_rescue_seat
{
author="BRAF Team";
author = "BRAF TEAM";
displayName="Rescue Basket";
_generalMacro="BRAF_Rescue_Basket";
model="braf\braf_sar\BRAF_Rescue_Basket.p3d";
_generalMacro="braf_rescue_basket";
model="braf\braf_sar\braf_rescue_basket.p3d";
};
class BRAF_Rescue_Stretcher: BRAF_Rescue_Seat
class braf_rescue_stretcher: braf_rescue_seat
{
author="BRAF Team";
author = "BRAF TEAM";
displayName="Rescue Stretcher";
_generalMacro="BRAF_Rescue_Stretcher";
model="braf\braf_sar\BRAF_Rescue_Stretcher.p3d";
_generalMacro="braf_rescue_stretcher";
model="braf\braf_sar\braf_rescue_stretcher.p3d";
};