This commit is contained in:
Chris Adderley
2019-02-18 15:24:46 -08:00
44 changed files with 240 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

View File

@ -1,18 +1,112 @@
// Patches applying art changes to relay antennas
// Contents:
// - Communotron 16 (longAntenna)
// - Communotron 16-S (surfAntenna)
// - Communotron HG-55 (mediumDishAntenna)
// - Communotron HG-55 (HighGainAntenna)
// - Communotron 88-88 (commDish)
// Communotron 16
@PART[longAntenna] {
@author = Andrew Cassidy
!mesh = DELETE
MODEL {
model = ReStock/Assets/Communication/restock-antenna-stack-1
}
@MODULE[ModuleDeployableAntenna] {
@animationName = Deploy
@pivotName = Segment_1
}
}
// Communotron 16-S
@PART[SurfAntenna] {
@author = Andrew Cassidy
!MODEL {}
MODEL {
model = ReStock/Assets/Communication/restock-antenna-radial-1
}
}
// Communotron DTS-M1
@PART[mediumDishAntenna] {
@author = Andrew Cassidy
!mesh = DELETE
MODEL {
model = ReStock/Assets/Communication/restock-antenna-radial-2
}
@MODULE[ModuleDeployableAntenna] {
@animationName = Deploy
@pivotName = Dish
!raycastTransformName = DELETE
}
}
// Communotron HG-55
@PART[HighGainAntenna] {
@author = Andrew Cassidy
!MODEL {}
MODEL {
model = ReStock/Assets/Communication/restock-antenna-radial-3
}
@MODULE[ModuleDeployableAntenna] {
@animationName = Deploy_Radial
@pivotName = Dish_Radial
!secondaryTransformName = DELETE
}
MODULE {
name = ModulePartVariants
baseVariant = Axial
VARIANT {
name = Radial
displayName = #LOC_Restock_variant-antenna_radial
themeName = Gold
primaryColor = #fccb0a
secondaryColor = #707070
GAMEOBJECTS {
Dish_Normal = true
Dish_Axial = false
}
}
VARIANT {
name = Axial
displayName = #LOC_Restock_variant-antenna_axial
themeName = Gold
primaryColor = #fccb0a
secondaryColor = #707070
GAMEOBJECTS {
Dish_Normal = false
Dish_Axial = true
}
}
}
}
// Communotron 88-88
@PART[commDish] {
@author = Andrew Cassidy
!mesh = DELETE
MODEL {
model = ReStock/Assets/Communication/restock-antenna-radial-5
model = ReStock/Assets/Communication/restock-antenna-stack-4
}
@MODULE[ModuleDeployableAntenna] {
@animationName = Deploy
@pivotName = Dish
}
}
}