mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
Compare commits
121 Commits
50e1ebc7ab
...
1.4.5
Author | SHA1 | Date | |
---|---|---|---|
1e25b36f44 | |||
804a1a9fa6 | |||
d2744a2ef0 | |||
0cb4adf146 | |||
0cdfe6eaea | |||
45224d2f1f | |||
3ff95fa5d8 | |||
d0aabec3d4 | |||
dd2bbade5b | |||
361317cee8 | |||
6985802d06 | |||
9416fe1e94 | |||
6d573ff53e | |||
b2736e07be | |||
6d3e1d0214 | |||
4ca42161c1 | |||
1877cec291 | |||
c6cf16233e | |||
cbefb48363 | |||
9398e070f3 | |||
77106d0a22 | |||
ccc6fe705d | |||
7eca4f80a7 | |||
cef5cc9fd3 | |||
b12e0c3027 | |||
881ad98374 | |||
016454d64c | |||
26bd8939b0 | |||
0beafe34ae | |||
4c06604169 | |||
3a04bbc586 | |||
154a0a25c5 | |||
4183f2046f | |||
9f980d42f7 | |||
72996db963 | |||
b0450f0b56 | |||
009fceb03f | |||
66f3d8c9fb | |||
7e2da705a2 | |||
b4b1f83843 | |||
142d7b9f36 | |||
569c3be680 | |||
9154eeb515 | |||
07d5a72788 | |||
e1ef57f77d | |||
f00d5b4a71 | |||
4f8eaf639e | |||
901618b571 | |||
eb3f3227d9 | |||
858b34400a | |||
4c15ae60af | |||
857767e76a | |||
305416c102 | |||
22bf0e7055 | |||
1152c83f7f | |||
6ab8377c3a | |||
285d3543f9 | |||
9081283174 | |||
59fd6bcb68 | |||
740a6e3e41 | |||
abab0d1c5f | |||
e9cc0c4515 | |||
def32dae09 | |||
d0aac2601e | |||
6472cce41a | |||
c0c899614f | |||
d3124f0606 | |||
4cb40be7ef | |||
999d7440cb | |||
99415890a3 | |||
8eac8f11cb | |||
628d600adc | |||
a67468a004 | |||
bd5293c398 | |||
993892994b | |||
7b2e0a277b | |||
29f4ec73cd | |||
d216c71d1a | |||
aec1d07b35 | |||
e5dc761a3c | |||
5f1c731a48 | |||
ff044dedce | |||
64a50541e4 | |||
dcad323e15 | |||
de199d26ff | |||
3358160411 | |||
e5ecbbf470 | |||
a7beefd4f9 | |||
be632e1a51 | |||
d99ef807ff | |||
0835a41cca | |||
4bf6f6bbf9 | |||
c15aacd364 | |||
2cceb95dac | |||
cbe7a3845c | |||
c9c13ea232 | |||
76fc72e6a5 | |||
eaaf03fcdf | |||
1253bc3d3d | |||
6923c21329 | |||
a4a5438fce | |||
edfc367142 | |||
c21dffbdd7 | |||
6db20ee793 | |||
43c13e7608 | |||
05c95e8ae8 | |||
e696ea7389 | |||
d1942672e0 | |||
967851b650 | |||
d3ba149ea9 | |||
745bcaa376 | |||
f8667a8e7a | |||
6161095581 | |||
f3a6970a36 | |||
b1cc1f4e1a | |||
d24f1e7768 | |||
1ebf86d3e5 | |||
778779c9d2 | |||
896d4fe3d0 | |||
20e48cccf1 | |||
e2eb2ac725 |
45
.github/workflows/build.yml
vendored
Normal file
45
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Package Checks
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the prod branch
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ prod ]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build-package:
|
||||
env:
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checkout this repo
|
||||
- uses: actions/checkout@v2
|
||||
# Checkout another repo
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
# Repository name with owner.
|
||||
repository: 'post-kerbin-mining-corporation/build-deploy'
|
||||
# branch
|
||||
ref: 'actions'
|
||||
path: 'build-deploy'
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
architecture: 'x64'
|
||||
- name: Installing dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install flake8 pytest awscli boto3 requests
|
||||
#- name: Running deploy tests
|
||||
# run: pytest -s --testpath "GameData/" build-deploy/src/tests/ # run the deploy tests
|
||||
- name: Building Restock package
|
||||
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
||||
- name: Building Restock+ package
|
||||
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
49
.github/workflows/deploy.yml
vendored
Normal file
49
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
name: Package and Deploy
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the prod branch
|
||||
on:
|
||||
push:
|
||||
branches: [ prod ]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
deploy-package:
|
||||
env:
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checkout this repo
|
||||
- uses: actions/checkout@v2
|
||||
# Checkout another repo
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
# Repository name with owner.
|
||||
repository: 'post-kerbin-mining-corporation/build-deploy'
|
||||
# branch
|
||||
ref: 'actions'
|
||||
path: 'build-deploy'
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
architecture: 'x64'
|
||||
- name: Installing dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install flake8 pytest awscli boto3 requests
|
||||
- name: Building Restock
|
||||
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
||||
- name: Building RestockPlus
|
||||
run: python build-deploy/src/package.py --f "Distribution/RestockPlus/.mod_data.yml"
|
||||
- name: Staging package
|
||||
run: python build-deploy/src/stage.py --f "Distribution/Restock/.mod_data.yml" # Run the staging script
|
||||
- name: Deploying Restock
|
||||
run: python build-deploy/src/deploy.py --f "Distribution/Restock/.mod_data.yml" # Deploy package to spacedock, curse, github
|
||||
- name: Deploying RestockPlus
|
||||
run: python build-deploy/src/deploy.py --f "Distribution/RestockPlus/.mod_data.yml" # Deploy package to spacedock, curse, github
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ Distribution/Restock/GameData/ReStock/Spaces/**/*.png
|
||||
Distribution/Restock/GameData/ReStock/Props/**/*.png
|
||||
Distribution/RestockPlus/GameData/ReStockPlus/Props/**/*.png
|
||||
Distribution/RestockPlus/GameData/ReStockPlus/Spaces/**/*.png
|
||||
Distribution/Restock/GameData/ReStock/RestockPatchDisabler.cfg
|
||||
|
@ -13,8 +13,9 @@ package:
|
||||
- RestockRigidLegs
|
||||
dependencies: # Configure dependencies
|
||||
ModuleManager:
|
||||
version: 4.1.4
|
||||
location: s3
|
||||
location: url
|
||||
url: https://ksp.sarbian.com/jenkins/job/ModuleManager/163/artifact/ModuleManager.4.2.3.dll
|
||||
zip: false
|
||||
deploy:
|
||||
SpaceDock:
|
||||
enabled: true # activate/deactivate this deployment script
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,7 @@
|
||||
// Patches applying art changes to 2.5m aerodynamic parts
|
||||
// Contents:
|
||||
// - Protective Rocket Nose Cone Mk7 (rocketNoseCone_v2)
|
||||
// - Protective Rocket Nose Cone Mk7 (rocketNoseCone_v3)
|
||||
|
||||
// Protective Rocket Nose Cone Mk7
|
||||
@PART[rocketNoseCone_v2]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
@ -62,3 +63,64 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Protective Rocket Nose Cone Mk7 [1.12]
|
||||
@PART[rocketNoseCone_v3]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
{
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Structural/restock-nosecone-25-2
|
||||
}
|
||||
!MODULE[ModulePartVariants] {}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
useMultipleDragCubes = false
|
||||
baseVariant = White
|
||||
VARIANT
|
||||
{
|
||||
name = White
|
||||
displayName = #autoLOC_8007119
|
||||
themeName = White
|
||||
primaryColor = #ffffff
|
||||
secondaryColor = #ffffff
|
||||
GAMEOBJECTS
|
||||
{
|
||||
25mNoseconeBlackWhite = false
|
||||
25mNoseconeWhite = true
|
||||
25mNoseconeOrange = false
|
||||
}
|
||||
}
|
||||
VARIANT
|
||||
{
|
||||
name = BlackAndWhite
|
||||
displayName = #autoLOC_8007122
|
||||
themeName = BlackAndWhite
|
||||
primaryColor = #ffffff
|
||||
secondaryColor = #000000
|
||||
GAMEOBJECTS
|
||||
{
|
||||
25mNoseconeBlackWhite = true
|
||||
25mNoseconeWhite = false
|
||||
25mNoseconeOrange = false
|
||||
}
|
||||
}
|
||||
VARIANT
|
||||
{
|
||||
name = Orange
|
||||
displayName = #autoLOC_8007121
|
||||
themeName = Orange
|
||||
primaryColor = #4c4f47
|
||||
secondaryColor = #f49841
|
||||
GAMEOBJECTS
|
||||
{
|
||||
25mNoseconeBlackWhite = false
|
||||
25mNoseconeWhite = false
|
||||
25mNoseconeOrange = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
// Patches applying art changes to probe parts
|
||||
// Contents:
|
||||
// - Probodobodyne QBE (probeCoreCube)
|
||||
// - Probodobodyne Stayputnik (probeCoreSphere_v2)
|
||||
// - Probodobodyne HECS (probeCoreHex_v2)
|
||||
// - Probodobodyne OKTO (probeCoreOcto_v2)
|
||||
// - Probodobodyne OKTO2 (probeCoreOcto2_v2)
|
||||
// - Probodobodyne Stayputnik (probeCoreSphere_v2)
|
||||
// - Probodobodyne QBE (probeCoreCube)
|
||||
// - Probodobodyne HECS2 (HECS2_ProbeCore)
|
||||
// - Probodobodyne RoveMate (roverBody_v2)
|
||||
// - RC-L01 Remote Guidance Unit (probeStackLarge)
|
||||
// - RC-001S Remote Guidance Unit (probeStackSmall)
|
||||
// - RC-L01 Remote Guidance Unit (probeStackLarge)
|
||||
|
||||
// QBE
|
||||
@PART[probeCoreCube]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
@ -20,6 +20,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-qube-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.2859,0.9363,0.135, 0.2859,0.9365,0.135, 0.2378,0.936,0.1355, 0.2378,0.9361,0.1355, 0.2859,0.9415,0.135, 0.2859,0.9415,0.135, 0,-1.49E-08,1.776E-15, 0.4885,0.5855,0.4885
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
@ -89,6 +94,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-sphere-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.7138,0.7224,0.555, 0.7138,0.7223,0.555, 0.6414,0.4475,0.5448, 0.6414,0.5677,0.6443, 0.7138,0.7218,0.555, 0.7138,0.722,0.555, 0,0.1422,0, 0.9058,1.008,0.9058
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
@ -131,6 +141,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-hecs-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.2532,0.8507,0.3093, 0.2532,0.8504,0.3093, 0.4086,0.997,0.09923, 0.4086,0.997,0.09923, 0.2846,0.7473,0.4278, 0.2846,0.7489,0.4278, 0,0.0006218,0, 0.7738,0.3751,0.6869
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
@ -200,6 +215,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-okto-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.2648,0.7948,0.3164, 0.2648,0.7922,0.3164, 0.3945,0.9742,0.1582, 0.3945,0.9742,0.1582, 0.2648,0.7908,0.3164, 0.2648,0.7893,0.3164, 1.788E-07,0,4.172E-07, 0.6866,0.3848,0.6866
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
@ -269,6 +289,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-okto2-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.06879,0.7797,0.2855, 0.06879,0.7815,0.2855, 0.2805,0.9745,0.1119, 0.2805,0.9744,0.1119, 0.06879,0.7758,0.2855, 0.06879,0.7706,0.2855, 1.252E-06,-3.725E-09,-3.01E-06, 0.5828,0.1206,0.5828
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
@ -338,6 +363,11 @@
|
||||
{
|
||||
model = ReStock/Assets/Command/restock-probe-hecs2-1
|
||||
}
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 1.433,0.8207,0.8363, 1.433,0.8226,0.8363, 1.832,0.9705,0.221, 1.832,0.9705,0.221, 1.56,0.7408,0.7851, 1.56,0.7396,0.7851, -1.329E-05,0,2.283E-05, 1.638,0.9988,1.455
|
||||
}
|
||||
!MODULE[ModulePartVariants] {}
|
||||
MODULE
|
||||
{
|
||||
@ -490,7 +520,7 @@
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 0.3123,0.71,0.7274, 0.3123,0.7034,0.7331, 1.402,0.9681,0.1515, 1.402,0.9704,0.1515, 0.3077,0.701,0.7337, 0.3077,0.7054,0.7279, -0.005277,-9.855E-05,0.0009629, 1.261,0.2428,1.273
|
||||
cube = Default, 0.2933,0.7015,0.758, 0.2933,0.7015,0.758, 1.398,0.9704,0.1499, 1.398,0.9739,0.1499, 0.2852,0.6621,0.7765, 0.2852,0.6625,0.7765, 0,0,0, 1.334,0.22,1.359
|
||||
}
|
||||
}
|
||||
|
||||
@ -507,6 +537,6 @@
|
||||
!DRAG_CUBE {}
|
||||
DRAG_CUBE
|
||||
{
|
||||
cube = Default, 1.028,0.7385,1.39, 1.028,0.7359,1.38, 5.274,0.9786,0.1842, 5.274,0.9776,0.1842, 1.072,0.7048,1.374, 1.072,0.7024,1.385, -0.0003395,0.0003387,-0.00157, 2.57,0.4079,2.58
|
||||
cube = Default, 0.9721,0.7331,1.4, 0.9721,0.7336,1.4, 5.261,0.9806,0.1842, 5.261,0.9795,0.1842, 0.9997,0.7319,1.375, 0.9997,0.7309,1.42, -1.748E-09,2.384E-09,-0.02, 2.611,0.38,2.651
|
||||
}
|
||||
}
|
||||
|
@ -112,4 +112,9 @@
|
||||
@animationName = Deploy
|
||||
@pivotName = Dish
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = DepthMask
|
||||
}
|
||||
}
|
||||
|
@ -185,7 +185,6 @@
|
||||
// RV-1X RCS Thruster Block
|
||||
@PART[RCSblock_01_small]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
{
|
||||
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL {}
|
||||
@ -558,6 +557,38 @@
|
||||
key = 0 1
|
||||
}
|
||||
}
|
||||
!MODULE[ModulePartVariants] {}
|
||||
MODULE
|
||||
{
|
||||
name = ModulePartVariants
|
||||
baseVariant = Bare
|
||||
useMultipleDragCubes = true
|
||||
VARIANT
|
||||
{
|
||||
name = Bare
|
||||
displayName = #autoLOC_8007115
|
||||
primaryColor = #ffffff
|
||||
secondaryColor = #ffffff
|
||||
GAMEOBJECTS
|
||||
{
|
||||
MiniRCSBlock1 = true
|
||||
MiniRCSBlock2 = false
|
||||
}
|
||||
}
|
||||
VARIANT
|
||||
{
|
||||
name = Shroud
|
||||
displayName = #autoLOC_8007114
|
||||
primaryColor = #999999
|
||||
secondaryColor = #999999
|
||||
GAMEOBJECTS
|
||||
{
|
||||
MiniRCSBlock1 = false
|
||||
MiniRCSBlock2 = true
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@MODULE[ModuleRCSFX]
|
||||
{
|
||||
@thrusterTransformName = RCSthruster
|
||||
|
@ -1,6 +1,7 @@
|
||||
// Patches applying art changes to crewed utility/science parts
|
||||
// Contents:
|
||||
// - Inline Clamp-O-Tron (dockingPortLateral)
|
||||
// - Mk2 Clamp-O-Tron (mk2DockingPort)
|
||||
// - Clamp-O-Tron Jr. Docking Port (dockingPort3)
|
||||
// - Clamp-O-Tron Docking Port (dockingPort2)
|
||||
// - Clamp-O-Tron Sr. Docking Port (dockingPortLarge)
|
||||
@ -9,15 +10,38 @@
|
||||
// Inline Clamp-O-Tron
|
||||
@PART[dockingPortLateral]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
{
|
||||
@author = Passinglurker
|
||||
@author = Passinglurker and Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/125/Re_dockingPortInline/restock-inlinedockingport-mk1-1
|
||||
model = ReStock/Assets/Coupling/restock-docking-inline-125-1
|
||||
}
|
||||
%rescaleFactor = 1
|
||||
%manufacturer = #autoLOC_501624
|
||||
|
||||
@MODULE[ModuleAnimateGeneric]
|
||||
{
|
||||
@animationName = DockingPortExtend
|
||||
}
|
||||
}
|
||||
|
||||
// Mk2 Clamp-O-Tron
|
||||
@PART[mk2DockingPort]:HAS[~RestockIgnore[*]]:FOR[000_ReStock]
|
||||
{
|
||||
@author = Porkjet and Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/restock-docking-inline-mk2-1
|
||||
}
|
||||
%rescaleFactor = 1
|
||||
|
||||
@MODULE[ModuleAnimateGeneric]
|
||||
{
|
||||
@animationName = DockingPortExtend
|
||||
}
|
||||
}
|
||||
|
||||
// Clamp-O-Tron Jr. Docking Port
|
||||
@ -28,7 +52,7 @@
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/restock-docking-0625
|
||||
model = ReStock/Assets/Coupling/restock-docking-0625-2
|
||||
}
|
||||
%rescaleFactor = 1
|
||||
MODULE
|
||||
@ -76,7 +100,7 @@
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/restock-docking-125-1
|
||||
model = ReStock/Assets/Coupling/restock-docking-125-2
|
||||
}
|
||||
MODEL
|
||||
{
|
||||
@ -86,41 +110,7 @@
|
||||
rotation = 180, 0, 0
|
||||
}
|
||||
%rescaleFactor = 1
|
||||
MODULE
|
||||
{
|
||||
name = ModuleColorChanger
|
||||
shaderProperty = _EmissiveColor
|
||||
animRate = 0.8
|
||||
animState = false
|
||||
useRate = true
|
||||
toggleInEditor = true
|
||||
toggleInFlight = true
|
||||
unfocusedRange = 5
|
||||
toggleName = #autoLOC_502011 //#autoLOC_502011 = Toggle Lights
|
||||
eventOnName = #autoLOC_502012 //#autoLOC_502012 = Lights On
|
||||
eventOffName = #autoLOC_502013 //#autoLOC_502013 = Lights Off
|
||||
toggleAction = True
|
||||
defaultActionGroup = Light
|
||||
redCurve
|
||||
{
|
||||
key = 0 0 0 3
|
||||
key = 1 1 0 0
|
||||
}
|
||||
greenCurve
|
||||
{
|
||||
key = 0 0 0 1
|
||||
key = 1 1 1 0
|
||||
}
|
||||
blueCurve
|
||||
{
|
||||
key = 0 0 0 0
|
||||
key = 1 0.7 1.5 0
|
||||
}
|
||||
alphaCurve
|
||||
{
|
||||
key = 0 1
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Clamp-O-Tron Sr. Docking Port
|
||||
@ -131,7 +121,7 @@
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/restock-docking-25-1
|
||||
model = ReStock/Assets/Coupling/restock-docking-25-3
|
||||
}
|
||||
MODEL
|
||||
{
|
||||
@ -141,39 +131,38 @@
|
||||
rotation = 180, 0, 0
|
||||
}
|
||||
%rescaleFactor = 1
|
||||
!MODULE[ModulePartVariants] {}
|
||||
MODULE
|
||||
{
|
||||
name = ModuleColorChanger
|
||||
shaderProperty = _EmissiveColor
|
||||
animRate = 0.8
|
||||
animState = false
|
||||
useRate = true
|
||||
toggleInEditor = true
|
||||
toggleInFlight = true
|
||||
unfocusedRange = 5
|
||||
toggleName = #autoLOC_502011 //#autoLOC_502011 = Toggle Lights
|
||||
eventOnName = #autoLOC_502012 //#autoLOC_502012 = Lights On
|
||||
eventOffName = #autoLOC_502013 //#autoLOC_502013 = Lights Off
|
||||
toggleAction = True
|
||||
defaultActionGroup = Light
|
||||
redCurve
|
||||
name = ModulePartVariants
|
||||
baseVariant = Gray with Stripes
|
||||
useMultipleDragCubes = false
|
||||
VARIANT
|
||||
{
|
||||
key = 0 0 0 3
|
||||
key = 1 1 0 0
|
||||
name = Gray with Stripes
|
||||
displayName = #autoLOC_8320084
|
||||
themeName = Gray
|
||||
primaryColor = #999999
|
||||
themeName = Gray with Stripes
|
||||
secondaryColor = #b08b39
|
||||
GAMEOBJECTS
|
||||
{
|
||||
Docking25Base = true
|
||||
Docking25Grey = false
|
||||
}
|
||||
greenCurve
|
||||
{
|
||||
key = 0 0 0 1
|
||||
key = 1 1 1 0
|
||||
}
|
||||
blueCurve
|
||||
VARIANT
|
||||
{
|
||||
key = 0 0 0 0
|
||||
key = 1 0.7 1.5 0
|
||||
name = Gray
|
||||
displayName = #autoLOC_8007101
|
||||
themeName = Gray
|
||||
primaryColor = #999999
|
||||
secondaryColor = #999999
|
||||
GAMEOBJECTS
|
||||
{
|
||||
Docking25Base = false
|
||||
Docking25Grey = true
|
||||
}
|
||||
alphaCurve
|
||||
{
|
||||
key = 0 1
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -186,7 +175,7 @@
|
||||
!MODEL {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Coupling/restock-docking-shielded-125-1
|
||||
model = ReStock/Assets/Coupling/restock-docking-shielded-125-2
|
||||
}
|
||||
MODEL
|
||||
{
|
||||
@ -200,41 +189,7 @@
|
||||
{
|
||||
@animationName = PortExtend
|
||||
}
|
||||
MODULE
|
||||
{
|
||||
name = ModuleColorChanger
|
||||
shaderProperty = _EmissiveColor
|
||||
animRate = 0.8
|
||||
animState = false
|
||||
useRate = true
|
||||
toggleInEditor = true
|
||||
toggleInFlight = true
|
||||
unfocusedRange = 5
|
||||
toggleName = #autoLOC_502011 //#autoLOC_502011 = Toggle Lights
|
||||
eventOnName = #autoLOC_502012 //#autoLOC_502012 = Lights On
|
||||
eventOffName = #autoLOC_502013 //#autoLOC_502013 = Lights Off
|
||||
toggleAction = True
|
||||
defaultActionGroup = Light
|
||||
redCurve
|
||||
{
|
||||
key = 0 0 0 3
|
||||
key = 1 1 0 0
|
||||
}
|
||||
greenCurve
|
||||
{
|
||||
key = 0 0 0 1
|
||||
key = 1 1 1 0
|
||||
}
|
||||
blueCurve
|
||||
{
|
||||
key = 0 0 0 0
|
||||
key = 1 0.7 1.5 0
|
||||
}
|
||||
alphaCurve
|
||||
{
|
||||
key = 0 1
|
||||
}
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = FXModuleLookAtConstraint
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user