Compare commits
15 Commits
4e858f6af3
...
a58b93644b
Author | SHA1 | Date | |
---|---|---|---|
a58b93644b | |||
ffe344d633 | |||
d363a9ef1f | |||
d8bb4d55c1 | |||
1561999e70 | |||
31b0deaa1e | |||
d9ea8e5f31 | |||
4f846d2b50 | |||
f3d7761b54 | |||
3867757fcb | |||
d97fa5ae4d | |||
dff26f1f43 | |||
6a6e28a09a | |||
041196ecd4 | |||
d40f4fea34 |
@ -254,12 +254,21 @@ class MinecraftWikiButtonTheme(BaseButtonTheme):
|
||||
+ (button.font_height * 0.2)
|
||||
+ self.list_pad // 2
|
||||
)
|
||||
|
||||
self.back_ground.x = self.x + (self.pad * 2)
|
||||
self.back_ground.y = self.y + (self.pad * 2)
|
||||
self.back_ground.position = self.x + (self.pad * 2), self.y + (self.pad * 2)
|
||||
self.back_ground.height = self.height - (self.pad * 4)
|
||||
self.cover_back.x = self.x + self.pad
|
||||
self.cover_back.y = self.y + self.pad
|
||||
self.cover_back.position = self.x + self.pad, self.y + self.pad
|
||||
self.cover_back.height = self.height - (self.pad * 2)
|
||||
self.cover_back2.x = self.x + self.pad
|
||||
self.cover_back2.y = self.y + self.pad
|
||||
self.cover_back2.position = self.x + self.pad, self.y + self.pad
|
||||
self.cover_back2.height = self.height - (self.pad * 3)
|
||||
self.list_back.x = self.x
|
||||
self.list_back.y = self.y
|
||||
else:
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
@ -381,6 +390,28 @@ class PressTextButton(widgets.WidgetBase):
|
||||
|
||||
self.value = text # 重新分配一下高度和宽度的位置
|
||||
|
||||
@property
|
||||
def x(self) -> int:
|
||||
return self._x
|
||||
|
||||
@x.setter
|
||||
def x(self, value: int) -> None:
|
||||
self._x = value
|
||||
self.text_label.x = value
|
||||
self.draw_theme.x = value
|
||||
self.draw_theme.on_update(self)
|
||||
|
||||
@property
|
||||
def y(self) -> int:
|
||||
return self._y
|
||||
|
||||
@y.setter
|
||||
def y(self, value: int) -> None:
|
||||
self._y = value
|
||||
self.text_label.y = value + 4
|
||||
self.draw_theme.y = value
|
||||
self.draw_theme.on_update(self)
|
||||
|
||||
@property
|
||||
def value(self):
|
||||
return self.text
|
||||
|
468
Difficult_Rocket/gui/widget/layout.py
Normal file
468
Difficult_Rocket/gui/widget/layout.py
Normal file
@ -0,0 +1,468 @@
|
||||
# -------------------------------
|
||||
# Difficult Rocket
|
||||
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
||||
# All rights reserved
|
||||
# -------------------------------
|
||||
|
||||
from typing import Optional, Tuple
|
||||
|
||||
# from libs import pyglet
|
||||
import pyglet
|
||||
from pyglet.text import Label
|
||||
from pyglet.gui import widgets
|
||||
from pyglet.window import mouse
|
||||
|
||||
# from pyglet.sprite import Sprite
|
||||
from pyglet.shapes import Rectangle, BorderedRectangle
|
||||
|
||||
# from pyglet.image import AbstractImage
|
||||
from pyglet.graphics import Batch, Group
|
||||
|
||||
from Difficult_Rocket.api.types import Options, FontData
|
||||
|
||||
# from Difficult_Rocket import DR_status
|
||||
|
||||
|
||||
RGBA = Tuple[int, int, int, int]
|
||||
|
||||
|
||||
class BaseButtonTheme:
|
||||
"""
|
||||
按钮的风格
|
||||
"""
|
||||
|
||||
name = "BaseButtonTheme"
|
||||
|
||||
def __init__(
|
||||
self, x: int, y: int, width: int, height: int, batch: Batch, group: Group
|
||||
):
|
||||
self.batch = batch
|
||||
self.group = group
|
||||
self.x = x
|
||||
self.y = y
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.enable = False
|
||||
|
||||
def on_enable(self, x: int, y: int, button):
|
||||
"""
|
||||
当按钮被启用的时候
|
||||
:param x:
|
||||
:param y:
|
||||
:param button:
|
||||
:return:
|
||||
"""
|
||||
|
||||
def on_disable(self, button):
|
||||
"""
|
||||
当按钮被禁用的时候
|
||||
:param button:
|
||||
:return:
|
||||
"""
|
||||
|
||||
def on_update(self, button) -> None:
|
||||
"""
|
||||
当按钮被更新的时候
|
||||
:param button:
|
||||
:return:
|
||||
"""
|
||||
|
||||
|
||||
class MinecraftWikiButtonTheme(BaseButtonTheme):
|
||||
"""
|
||||
直接绘制按钮的风格
|
||||
"""
|
||||
|
||||
name = "MinecraftWikiButtonTheme"
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
x: int,
|
||||
y: int,
|
||||
width: int,
|
||||
height: int,
|
||||
batch: Batch,
|
||||
group: Group,
|
||||
theme: dict = None,
|
||||
):
|
||||
super().__init__(x, y, width, height, batch, group)
|
||||
self.batch = batch
|
||||
self.group = group
|
||||
a = (72, 73, 74, 255)
|
||||
b = (109, 109, 110, 255)
|
||||
c = (88, 91, 92, 255)
|
||||
d = (124, 124, 125, 255) # 左下和右上两个重叠点的颜色.... 画吗?
|
||||
e = (49, 50, 51, 255)
|
||||
touch_a = (49, 50, 51, 255)
|
||||
touch_b = (90, 91, 92, 255)
|
||||
touch_c = (71, 72, 72, 255)
|
||||
touch_d = (106, 107, 108, 255) # 同上
|
||||
pad = 2 # 边框宽度 2 px
|
||||
list_pad = 4 # 下巴 4px
|
||||
if theme is None:
|
||||
theme = {}
|
||||
pop_out = theme.get("pop_out", False)
|
||||
if pop_out:
|
||||
# 主背景
|
||||
self.back_ground = Rectangle(
|
||||
x=x + (pad * 2),
|
||||
y=y + (pad * 2) + list_pad,
|
||||
width=width - (pad * 4),
|
||||
height=height - (pad * 4) - list_pad,
|
||||
color=a,
|
||||
batch=batch,
|
||||
group=Group(order=3, parent=group),
|
||||
)
|
||||
# 左上方向的覆盖
|
||||
self.cover_back = Rectangle(
|
||||
x=x + pad,
|
||||
y=y + pad + list_pad,
|
||||
width=width - (pad * 2),
|
||||
height=height - (pad * 2) - list_pad,
|
||||
color=b,
|
||||
batch=batch,
|
||||
group=Group(order=1, parent=group),
|
||||
)
|
||||
# 右下方向的覆盖
|
||||
self.cover_back2 = Rectangle(
|
||||
x=x + (pad * 2),
|
||||
y=y + pad + list_pad,
|
||||
width=width - (pad * 3),
|
||||
height=height - (pad * 3) - list_pad,
|
||||
color=c,
|
||||
batch=batch,
|
||||
group=Group(order=2, parent=group),
|
||||
)
|
||||
else:
|
||||
# 主背景
|
||||
self.back_ground = Rectangle(
|
||||
x=x + (pad * 2),
|
||||
y=y + (pad * 2) + list_pad,
|
||||
width=width - (pad * 4),
|
||||
height=height - (pad * 4) - list_pad,
|
||||
color=c,
|
||||
batch=batch,
|
||||
group=Group(order=3, parent=group),
|
||||
)
|
||||
# 左上方向的覆盖
|
||||
self.cover_back = Rectangle(
|
||||
x=x + pad,
|
||||
y=y + pad + list_pad,
|
||||
width=width - (pad * 2),
|
||||
height=height - (pad * 2) - list_pad,
|
||||
color=a,
|
||||
batch=batch,
|
||||
group=Group(order=2, parent=group),
|
||||
)
|
||||
# 右下方向的覆盖
|
||||
self.cover_back2 = Rectangle(
|
||||
x=x + pad,
|
||||
y=y + (pad * 2) + list_pad,
|
||||
width=width - (pad * 3),
|
||||
height=height - (pad * 3) - list_pad,
|
||||
color=b,
|
||||
batch=batch,
|
||||
group=Group(order=1, parent=group),
|
||||
)
|
||||
# 下巴的框
|
||||
self.list_back = BorderedRectangle(
|
||||
x=x,
|
||||
y=y,
|
||||
width=width,
|
||||
height=height,
|
||||
border=pad,
|
||||
border_color=(0, 0, 0, 255),
|
||||
color=e,
|
||||
batch=batch,
|
||||
group=Group(order=0, parent=group),
|
||||
)
|
||||
self.a = a
|
||||
self.b = b
|
||||
self.c = c
|
||||
self.d = d
|
||||
self.e = e
|
||||
self.touch_a = touch_a
|
||||
self.touch_b = touch_b
|
||||
self.touch_c = touch_c
|
||||
self.touch_d = touch_d
|
||||
self.pad = pad
|
||||
self.list_pad = list_pad
|
||||
self.pop_out = pop_out
|
||||
self.drag_list = theme.get("drag_list", False)
|
||||
|
||||
def on_enable(self, x: int, y: int, button):
|
||||
if self.pop_out:
|
||||
self.back_ground.color = self.touch_a
|
||||
self.cover_back.color = self.touch_b
|
||||
self.cover_back2.color = self.touch_c
|
||||
else:
|
||||
self.back_ground.color = self.touch_c
|
||||
self.cover_back.color = self.touch_a
|
||||
self.cover_back2.color = self.touch_b
|
||||
if self.drag_list:
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
+ (self.height - button.font_height) // 2
|
||||
+ (button.font_height * 0.2)
|
||||
+ (self.list_pad // 2)
|
||||
)
|
||||
self.back_ground.y = self.y + (self.pad * 2)
|
||||
self.back_ground.height = self.height - (self.pad * 4)
|
||||
self.cover_back.y = self.y + self.pad
|
||||
self.cover_back.height = self.height - (self.pad * 2)
|
||||
self.cover_back2.y = self.y + self.pad
|
||||
self.cover_back2.height = self.height - (self.pad * 3)
|
||||
else:
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
+ (self.height - button.font_height) // 2
|
||||
+ (button.font_height * 0.2)
|
||||
+ self.list_pad
|
||||
)
|
||||
self.enable = True
|
||||
|
||||
def on_disable(self, button) -> None:
|
||||
if self.pop_out:
|
||||
self.back_ground.color = self.a
|
||||
self.cover_back.color = self.b
|
||||
self.cover_back2.color = self.c
|
||||
else:
|
||||
self.back_ground.color = self.c
|
||||
self.cover_back.color = self.a
|
||||
self.cover_back2.color = self.b
|
||||
if self.drag_list:
|
||||
self.back_ground.y = self.y + (self.pad * 2) + self.list_pad
|
||||
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
|
||||
self.cover_back.y = self.y + self.pad + self.list_pad
|
||||
self.cover_back.height = self.height - (self.pad * 2) - self.list_pad
|
||||
self.cover_back2.y = self.y + self.pad + self.list_pad
|
||||
self.cover_back2.height = self.height - (self.pad * 3) - self.list_pad
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
+ (self.height - button.font_height) // 2
|
||||
+ (button.font_height * 0.2)
|
||||
+ self.list_pad
|
||||
)
|
||||
self.enable = False
|
||||
|
||||
def on_update(self, button) -> None:
|
||||
super().on_update(button)
|
||||
if self.enable and self.drag_list:
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
+ (self.height - button.font_height) // 2
|
||||
+ (button.font_height * 0.2)
|
||||
+ self.list_pad // 2
|
||||
)
|
||||
self.back_ground.position = self.x + (self.pad * 2), self.y + (self.pad * 2)
|
||||
self.back_ground.height = self.height - (self.pad * 4)
|
||||
self.cover_back.position = self.x + self.pad, self.y + self.pad
|
||||
self.cover_back.height = self.height - (self.pad * 2)
|
||||
self.cover_back2.position = self.x + self.pad, self.y + self.pad
|
||||
self.cover_back2.height = self.height - (self.pad * 3)
|
||||
else:
|
||||
button.text_label.y = (
|
||||
self.y
|
||||
+ (self.height - button.font_height) // 2
|
||||
+ (button.font_height * 0.2)
|
||||
+ self.list_pad
|
||||
)
|
||||
self.back_ground.position = (
|
||||
self.x + (self.pad * 2),
|
||||
self.y + (self.pad * 2) + self.list_pad,
|
||||
)
|
||||
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
|
||||
self.cover_back.position = (
|
||||
self.x + self.pad,
|
||||
self.y + self.pad + self.list_pad,
|
||||
)
|
||||
self.cover_back.height = self.height - (self.pad * 2) - self.list_pad
|
||||
self.cover_back2.position = (
|
||||
self.x + self.pad,
|
||||
self.y + self.pad + self.list_pad,
|
||||
)
|
||||
self.cover_back2.height = self.height - (self.pad * 3) - self.list_pad
|
||||
self.back_ground.position = (
|
||||
self.x + (self.pad * 2),
|
||||
self.y + (self.pad * 2) + self.list_pad,
|
||||
)
|
||||
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
|
||||
|
||||
|
||||
class ButtonThemeOptions(Options):
|
||||
"""基于 Options 写的 ButtonTheme"""
|
||||
|
||||
name = "ButtonTheme"
|
||||
untouched_color: RGBA = (39, 73, 114, 255)
|
||||
touched_color: RGBA = (66, 150, 250, 255)
|
||||
hit_color: RGBA = (15, 135, 250, 255)
|
||||
font_theme: FontData = FontData()
|
||||
|
||||
def __str__(self):
|
||||
return self.as_markdown()
|
||||
|
||||
|
||||
class PressTextButton(widgets.WidgetBase):
|
||||
"""
|
||||
自带 字符 + 材质 的按钮,就不用单独做材质了
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
x: int,
|
||||
y: int,
|
||||
width: int,
|
||||
height: int,
|
||||
text: str,
|
||||
batch: Optional[Batch] = None,
|
||||
group: Optional[Group] = None,
|
||||
theme: Optional[ButtonThemeOptions] = None,
|
||||
draw_theme: Optional[type(BaseButtonTheme)] = None,
|
||||
dict_theme: Optional[dict] = None,
|
||||
):
|
||||
super().__init__(x, y, width, height)
|
||||
self.main_batch = batch or Batch()
|
||||
self.user_batch = batch is not None
|
||||
self.front_group = Group(order=10, parent=group)
|
||||
self.back_ground_group = Group(order=5, parent=group)
|
||||
self.pressed = False
|
||||
|
||||
self.theme = theme or ButtonThemeOptions()
|
||||
if dict_theme is None:
|
||||
dict_theme = {}
|
||||
self.dict_theme = dict_theme
|
||||
|
||||
self.untouched_color = self.theme.untouched_color
|
||||
self.touched_color = self.theme.touched_color
|
||||
self.hit_color = self.theme.hit_color
|
||||
# from ImGui
|
||||
|
||||
self.text = text
|
||||
self.text_label = Label(
|
||||
font_name=self.theme.font_theme.font_name,
|
||||
font_size=self.theme.font_theme.font_size,
|
||||
batch=self.main_batch,
|
||||
group=self.front_group,
|
||||
x=self._x,
|
||||
y=self._y + 4,
|
||||
width=self._width,
|
||||
height=self._height,
|
||||
)
|
||||
self.font = pyglet.font.load(
|
||||
self.theme.font_theme.font_name,
|
||||
self.theme.font_theme.font_size,
|
||||
bold=self.theme.font_theme.bold,
|
||||
italic=self.theme.font_theme.italic,
|
||||
stretch=self.theme.font_theme.stretch,
|
||||
)
|
||||
self.font_height = self.font.ascent - self.font.descent
|
||||
if draw_theme is None:
|
||||
self.back_rec = Rectangle(
|
||||
x=self._x,
|
||||
y=self._y,
|
||||
width=self._width,
|
||||
height=self._height,
|
||||
color=self.untouched_color, # ImGui color
|
||||
batch=self.main_batch,
|
||||
group=self.back_ground_group,
|
||||
)
|
||||
self.draw_theme = False
|
||||
else:
|
||||
self.draw_theme = draw_theme(
|
||||
x=self._x,
|
||||
y=self._y,
|
||||
width=self._width,
|
||||
height=self._height,
|
||||
batch=self.main_batch,
|
||||
group=self.back_ground_group,
|
||||
theme=self.dict_theme,
|
||||
)
|
||||
self.draw_theme.on_update(self)
|
||||
|
||||
self.value = text # 重新分配一下高度和宽度的位置
|
||||
|
||||
@property
|
||||
def value(self):
|
||||
return self.text
|
||||
|
||||
@value.setter
|
||||
def value(self, value):
|
||||
self.text = value
|
||||
self.text_label.text = value
|
||||
text_width = self.text_label.content_width
|
||||
self.text_label.x = self._x + (self.width - text_width) // 2
|
||||
self.text_label.y = (
|
||||
self._y + (self.height - self.font_height) // 2 + (self.font_height * 0.2)
|
||||
) # 修正一下位置
|
||||
|
||||
@property
|
||||
def batch(self) -> Batch:
|
||||
return self.main_batch
|
||||
|
||||
@batch.setter
|
||||
def batch(self, value: Batch):
|
||||
assert isinstance(value, Batch), "batch must be a pyglet.graphics.Batch"
|
||||
self.main_batch = value
|
||||
self.text_label.batch = value
|
||||
self.back_rec.batch = value
|
||||
self.user_batch = True
|
||||
|
||||
def __contains__(self, point):
|
||||
if self.draw_theme:
|
||||
x, y = self.x, self.y
|
||||
return x < point[0] < x + self._width and y < point[1] < y + self._height
|
||||
return point in self.back_rec
|
||||
|
||||
def on_draw(self):
|
||||
if not self.user_batch:
|
||||
self.main_batch.draw()
|
||||
|
||||
def on_mouse_motion(self, x, y, dx, dy):
|
||||
if (x, y) in self:
|
||||
if self.draw_theme:
|
||||
...
|
||||
else:
|
||||
self.back_rec.color = self.touched_color
|
||||
else:
|
||||
self.pressed = False
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.untouched_color
|
||||
|
||||
def on_mouse_press(self, x, y, buttons, modifiers) -> bool:
|
||||
if (x, y) in self:
|
||||
if buttons == mouse.LEFT:
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_enable(x, y, self)
|
||||
else:
|
||||
self.back_rec.color = self.hit_color
|
||||
self.dispatch_event("on_press", x, y)
|
||||
self.pressed = True
|
||||
return True
|
||||
else:
|
||||
self.pressed = False
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.untouched_color
|
||||
self.dispatch_event("on_release", x, y)
|
||||
return False
|
||||
|
||||
def on_mouse_release(self, x, y, buttons, modifiers):
|
||||
if self.pressed and (x, y) in self:
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.touched_color
|
||||
self.pressed = False
|
||||
|
||||
def _update_position(self):
|
||||
self.text_label.position = self._x, self._y, 0
|
||||
self.back_rec.position = self._x, self._y
|
||||
self.back_rec.width = self._width
|
||||
self.back_rec.height = self._height
|
||||
|
||||
|
||||
PressTextButton.register_event_type("on_press")
|
||||
PressTextButton.register_event_type("on_release")
|
45
mods/dr_game/Difficult_Rocket_rs/src/Cargo.lock
generated
45
mods/dr_game/Difficult_Rocket_rs/src/Cargo.lock
generated
@ -153,6 +153,7 @@ dependencies = [
|
||||
"nalgebra",
|
||||
"pyo3",
|
||||
"quick-xml",
|
||||
"rapier2d",
|
||||
"rapier2d-f64",
|
||||
"serde",
|
||||
]
|
||||
@ -358,6 +359,28 @@ dependencies = [
|
||||
"windows-targets",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parry2d"
|
||||
version = "0.15.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "41c56bf3b44b08f18a6ed01e5c6bf1a41a12efc7e8b806ce0cf50831c88f9fc8"
|
||||
dependencies = [
|
||||
"approx",
|
||||
"arrayvec",
|
||||
"bitflags 1.3.2",
|
||||
"downcast-rs",
|
||||
"either",
|
||||
"log",
|
||||
"nalgebra",
|
||||
"num-derive",
|
||||
"num-traits",
|
||||
"rustc-hash",
|
||||
"simba",
|
||||
"slab",
|
||||
"smallvec",
|
||||
"spade",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parry2d-f64"
|
||||
version = "0.15.1"
|
||||
@ -483,6 +506,28 @@ dependencies = [
|
||||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rapier2d"
|
||||
version = "0.19.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "535b70552dc42dab9054d3d5a80e8430ced502e20acb0bf6118c344ff356f62a"
|
||||
dependencies = [
|
||||
"approx",
|
||||
"arrayvec",
|
||||
"bit-vec",
|
||||
"bitflags 1.3.2",
|
||||
"crossbeam",
|
||||
"downcast-rs",
|
||||
"log",
|
||||
"nalgebra",
|
||||
"num-derive",
|
||||
"num-traits",
|
||||
"ordered-float",
|
||||
"parry2d",
|
||||
"rustc-hash",
|
||||
"simba",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rapier2d-f64"
|
||||
version = "0.19.0"
|
||||
|
@ -32,3 +32,5 @@ rapier2d-f64 = { version = "0.19.0", features = ["simd-stable"] }
|
||||
pyo3 = { version = "0.21.2", features = ["extension-module", "macros"] }
|
||||
|
||||
dict_derive = "0.5"
|
||||
|
||||
rapier2d = "0.19.0"
|
@ -3,7 +3,7 @@
|
||||
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
||||
# All rights reserved
|
||||
# -------------------------------
|
||||
|
||||
import os
|
||||
import time
|
||||
import random
|
||||
import traceback
|
||||
@ -70,7 +70,7 @@ class SR1ShipRender(BaseScreen):
|
||||
"""用于渲染 sr1 船的类"""
|
||||
|
||||
name = "DR_game_sr1_ship_render"
|
||||
|
||||
ships_buttons = []
|
||||
def __init__(self, main_window: ClientWindow):
|
||||
super().__init__(main_window)
|
||||
self.logger = logger
|
||||
@ -153,6 +153,93 @@ class SR1ShipRender(BaseScreen):
|
||||
tag="setup",
|
||||
)
|
||||
|
||||
# Buttons
|
||||
self.buttons_group = Group(100, parent=main_window.main_group)
|
||||
self.ships_buttons_group = Group(100, parent=main_window.main_group)
|
||||
|
||||
self.enter_game_button = PressEnterGameButton(
|
||||
window=main_window,
|
||||
x=500,
|
||||
y=100,
|
||||
width=150,
|
||||
height=30,
|
||||
text="进入游戏",
|
||||
batch=self.main_batch,
|
||||
group=self.buttons_group,
|
||||
draw_theme=MinecraftWikiButtonTheme
|
||||
)
|
||||
|
||||
self.select_ship_button = PressSelectShipButton(
|
||||
window=main_window,
|
||||
parent_window = self,
|
||||
x=100,
|
||||
y=100,
|
||||
width=150,
|
||||
height=30,
|
||||
text="加载飞船",
|
||||
batch=self.main_batch,
|
||||
group=self.buttons_group,
|
||||
draw_theme=MinecraftWikiButtonTheme,
|
||||
)
|
||||
|
||||
main_window.push_handlers(self.enter_game_button)
|
||||
main_window.push_handlers(self.select_ship_button)
|
||||
|
||||
# 扫描所有飞船
|
||||
self.show_ships_buttons = True
|
||||
self.ships_buttons_w = 150
|
||||
self.ships_buttons_h = 30
|
||||
self.ships_buttons_begin_x = self.width - self.ships_buttons_w
|
||||
self.ships_buttons_begin_y = 0
|
||||
self.ships_buttons_end_x = self.width
|
||||
self.ships_buttons_end_y = self.height
|
||||
|
||||
ships_path = "./ships/"
|
||||
ships_files=self.scan_all_ships_list(ships_path)
|
||||
|
||||
for i in range(len(ships_files)):
|
||||
self.ships_buttons.append(PressOpenShipButton(
|
||||
window=main_window,
|
||||
ship_path = ships_files[i],
|
||||
parent_window = self,
|
||||
x=self.ships_buttons_begin_x,
|
||||
y=self.ships_buttons_end_y - i * self.ships_buttons_h,
|
||||
width=self.ships_buttons_w,
|
||||
height=self.ships_buttons_h,
|
||||
text=ships_files[i][8:],
|
||||
batch=self.main_batch,
|
||||
group=self.ships_buttons_group,
|
||||
draw_theme=MinecraftWikiButtonTheme,
|
||||
))
|
||||
|
||||
main_window.push_handlers(self.ships_buttons[-1])
|
||||
|
||||
self.ship_list_line_back = Line(
|
||||
self.ships_buttons_begin_x - 4,
|
||||
self.ships_buttons_begin_y,
|
||||
self.ships_buttons_begin_x - 4,
|
||||
self.ships_buttons_end_y,
|
||||
width=5,
|
||||
color=(100, 100, 100, 255),
|
||||
batch=self.main_batch,
|
||||
group=self.ships_buttons_group,
|
||||
)
|
||||
|
||||
self.ship_list_line = Line(
|
||||
x = self.ships_buttons_begin_x,
|
||||
y = self.ships_buttons_end_y - (self.ships_buttons_end_y - self.ships_buttons_begin_y) ** 2 / ((len(ships_files) + 1) * self.ships_buttons_h),
|
||||
x2 = self.ships_buttons_begin_x,
|
||||
y2 = self.ships_buttons_end_y,
|
||||
width=20,
|
||||
color=(200, 200, 200, 255),
|
||||
batch=self.main_batch,
|
||||
group=self.ships_buttons_group,
|
||||
)
|
||||
|
||||
self.ships_buttons_group.visible = False
|
||||
|
||||
|
||||
|
||||
@property
|
||||
def size(self) -> Tuple[int, int]:
|
||||
"""渲染器的渲染大小"""
|
||||
@ -406,7 +493,14 @@ class SR1ShipRender(BaseScreen):
|
||||
def on_mouse_scroll(
|
||||
self, x: int, y: int, scroll_x: int, scroll_y: int, window: ClientWindow
|
||||
):
|
||||
if self.status.focus:
|
||||
# logger.info(x,y,self.ships_buttons_begin_x,self.ships_buttons_end_x,self.ships_buttons_begin_y,self.ships_buttons_end_y)
|
||||
if self.status.focus and \
|
||||
(self.show_ships_buttons == False or \
|
||||
(not (self.show_ships_buttons == True \
|
||||
and x >= self.ships_buttons_begin_x \
|
||||
and x <= self.ships_buttons_end_x \
|
||||
and y >= self.ships_buttons_begin_y \
|
||||
and y <= self.ships_buttons_end_y))):
|
||||
mouse_dx = x - (self.width / 2) + self.dx
|
||||
mouse_dy = y - (self.height / 2) + self.dy
|
||||
# 鼠标缩放位置相对于屏幕中心的位置
|
||||
@ -438,6 +532,29 @@ class SR1ShipRender(BaseScreen):
|
||||
if size_y < 10:
|
||||
size_y = 10
|
||||
self.size = size_x, size_y
|
||||
elif self.show_ships_buttons == True \
|
||||
and x >= self.ships_buttons_begin_x \
|
||||
and x <= self.ships_buttons_end_x \
|
||||
and y >= self.ships_buttons_begin_y \
|
||||
and y <= self.ships_buttons_end_y:
|
||||
min_y = 9999999
|
||||
max_y = 0
|
||||
for ship_button in self.ships_buttons:
|
||||
min_y = min(min_y, ship_button.y)
|
||||
max_y = max(max_y, ship_button.y)
|
||||
|
||||
if max_y + scroll_y * 50 <= self.height - self.ships_buttons_h:
|
||||
scroll_y = (self.height - self.ships_buttons_h - max_y) / 50
|
||||
|
||||
if min_y + scroll_y * 50 >= 0:
|
||||
scroll_y = (0 - min_y) / 50
|
||||
|
||||
for ship_button in self.ships_buttons:
|
||||
ship_button.y = ship_button.y + scroll_y * 50
|
||||
|
||||
self.ship_list_line.y = self.ship_list_line.y - scroll_y * 50 * (self.ships_buttons_end_y - self.ships_buttons_begin_y) / ((len(self.ships_buttons) + 1) * self.ships_buttons_h)
|
||||
|
||||
|
||||
|
||||
def on_command(self, command: CommandText, window: ClientWindow):
|
||||
"""解析命令"""
|
||||
@ -568,6 +685,25 @@ class SR1ShipRender(BaseScreen):
|
||||
self.dx += dx
|
||||
self.dy += dy
|
||||
|
||||
def scan_all_ships_list(self, ships_path: str):
|
||||
# 当前目录
|
||||
base_dir = ships_path
|
||||
|
||||
# 获取当前目录下的所有文件
|
||||
files = [os.path.join(base_dir, file) for file in os.listdir(base_dir)]
|
||||
|
||||
return files
|
||||
|
||||
def begin_ship_render_from_path(self, ship_path: str):
|
||||
if Path(ship_path).is_dir():
|
||||
for path in Path(ship_path).glob("*.xml"):
|
||||
try:
|
||||
self.load_xml(str(path))
|
||||
except ValueError:
|
||||
traceback.print_exc()
|
||||
if self.load_xml(ship_path):
|
||||
self.render_ship()
|
||||
|
||||
def on_file_drop(self, x: int, y: int, paths: List[str], window: ClientWindow):
|
||||
if len(paths) > 1:
|
||||
for path in paths:
|
||||
@ -576,14 +712,7 @@ class SR1ShipRender(BaseScreen):
|
||||
except Exception:
|
||||
traceback.print_exc()
|
||||
else:
|
||||
if Path(paths[0]).is_dir():
|
||||
for path in Path(paths[0]).glob("*.xml"):
|
||||
try:
|
||||
self.load_xml(str(path))
|
||||
except ValueError:
|
||||
traceback.print_exc()
|
||||
if self.load_xml(paths[0]):
|
||||
self.render_ship()
|
||||
self.begin_ship_render_from_path(paths[0])
|
||||
# for path in paths:
|
||||
# if self.load_xml(path): # 加载成功一个就停下
|
||||
# break
|
||||
@ -597,6 +726,135 @@ class SR1ShipRender(BaseScreen):
|
||||
def view(self, value: Mat4):
|
||||
self.window_pointer.view = value
|
||||
|
||||
from Difficult_Rocket.gui.widget.button import (
|
||||
PressTextButton,
|
||||
MinecraftWikiButtonTheme,
|
||||
ButtonThemeOptions,
|
||||
BaseButtonTheme,
|
||||
)
|
||||
class PressEnterGameButton(PressTextButton):
|
||||
def __init__(
|
||||
self,
|
||||
window: ClientWindow,
|
||||
x: int,
|
||||
y: int,
|
||||
width: int,
|
||||
height: int,
|
||||
text: str,
|
||||
batch: Optional[Batch] = None,
|
||||
group: Optional[Group] = None,
|
||||
theme: Optional[ButtonThemeOptions] = None,
|
||||
draw_theme: Optional[BaseButtonTheme] = None,
|
||||
dict_theme: Optional[dict] = None,
|
||||
):
|
||||
super().__init__(
|
||||
x, y, width, height, text, batch, group, theme, draw_theme, dict_theme
|
||||
)
|
||||
self.window = window
|
||||
|
||||
|
||||
def on_mouse_release(self, x, y, buttons, modifiers):
|
||||
if self.pressed and (x, y) in self:
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.touched_color
|
||||
self.pressed = False
|
||||
|
||||
logger.info("进入游戏")
|
||||
|
||||
from tkinter import Tk
|
||||
from tkinter import filedialog
|
||||
class PressSelectShipButton(PressTextButton):
|
||||
path_var = "./assets/builtin/dock1.xml"
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
window: ClientWindow,
|
||||
parent_window,
|
||||
x: int,
|
||||
y: int,
|
||||
width: int,
|
||||
height: int,
|
||||
text: str,
|
||||
batch: Optional[Batch] = None,
|
||||
group: Optional[Group] = None,
|
||||
theme: Optional[ButtonThemeOptions] = None,
|
||||
draw_theme: Optional[BaseButtonTheme] = None,
|
||||
dict_theme: Optional[dict] = None,
|
||||
):
|
||||
super().__init__(
|
||||
x, y, width, height, text, batch, group, theme, draw_theme, dict_theme
|
||||
)
|
||||
self.window = window
|
||||
self.parent_window = parent_window
|
||||
|
||||
|
||||
def on_mouse_release(self, x, y, buttons, modifiers):
|
||||
if self.pressed and (x, y) in self:
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.touched_color
|
||||
self.pressed = False
|
||||
|
||||
|
||||
root = Tk() # 创建一个Tkinter.Tk()实例
|
||||
root.withdraw() # 将Tkinter.Tk()实例隐藏
|
||||
file_name= filedialog.askopenfilename(title='选择一个飞船存档',
|
||||
initialdir='./' # 打开当前程序工作目录
|
||||
)
|
||||
self.path_var = file_name
|
||||
self.parent_window.begin_ship_render_from_path(file_name)
|
||||
logger.info("加载飞船from "+self.path_var)
|
||||
|
||||
def get_ship_path(self):
|
||||
logger.info("加载飞船from "+self.path_var)
|
||||
return self.path_var
|
||||
|
||||
class PressOpenShipButton(PressTextButton):
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
window: ClientWindow,
|
||||
ship_path,
|
||||
parent_window,
|
||||
x: int,
|
||||
y: int,
|
||||
width: int,
|
||||
height: int,
|
||||
text: str,
|
||||
batch: Optional[Batch] = None,
|
||||
group: Optional[Group] = None,
|
||||
theme: Optional[ButtonThemeOptions] = None,
|
||||
draw_theme: Optional[BaseButtonTheme] = None,
|
||||
dict_theme: Optional[dict] = None,
|
||||
):
|
||||
super().__init__(
|
||||
x, y, width, height, text, batch, group, theme, draw_theme, dict_theme
|
||||
)
|
||||
self.window = window
|
||||
self.parent_window = parent_window
|
||||
self.ship_path = ship_path
|
||||
def set_y(self, y):
|
||||
self.y = y
|
||||
|
||||
def get_y(self):
|
||||
return self.y
|
||||
|
||||
def on_mouse_release(self, x, y, buttons, modifiers):
|
||||
if self.pressed and (x, y) in self:
|
||||
if self.draw_theme:
|
||||
self.draw_theme.on_disable(self)
|
||||
else:
|
||||
self.back_rec.color = self.touched_color
|
||||
self.pressed = False
|
||||
|
||||
self.parent_window.begin_ship_render_from_path(self.ship_path)
|
||||
logger.info("加载飞船from "+self.ship_path)
|
||||
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
from objprint import op
|
||||
|
1
ships/0401008
Normal file
1
ships/0401008
Normal file
File diff suppressed because one or more lines are too long
1
ships/0401011
Normal file
1
ships/0401011
Normal file
File diff suppressed because one or more lines are too long
1
ships/0401011A
Normal file
1
ships/0401011A
Normal file
File diff suppressed because one or more lines are too long
1
ships/0401012
Normal file
1
ships/0401012
Normal file
File diff suppressed because one or more lines are too long
1
ships/0401012 GPSD Alliance 30
Normal file
1
ships/0401012 GPSD Alliance 30
Normal file
File diff suppressed because one or more lines are too long
1
ships/0401013
Normal file
1
ships/0401013
Normal file
File diff suppressed because one or more lines are too long
1
ships/0402001
Normal file
1
ships/0402001
Normal file
File diff suppressed because one or more lines are too long
1
ships/0405001
Normal file
1
ships/0405001
Normal file
File diff suppressed because one or more lines are too long
1
ships/0405002
Normal file
1
ships/0405002
Normal file
File diff suppressed because one or more lines are too long
1
ships/055F
Normal file
1
ships/055F
Normal file
File diff suppressed because one or more lines are too long
1
ships/055I
Normal file
1
ships/055I
Normal file
File diff suppressed because one or more lines are too long
1
ships/401008
Normal file
1
ships/401008
Normal file
File diff suppressed because one or more lines are too long
1
ships/A
Normal file
1
ships/A
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part></Parts><Connections/></Ship>
|
1
ships/A533
Normal file
1
ships/A533
Normal file
File diff suppressed because one or more lines are too long
1
ships/A533S
Normal file
1
ships/A533S
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72Q
Normal file
1
ships/A72Q
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72QA
Normal file
1
ships/A72QA
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72QAW
Normal file
1
ships/A72QAW
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72QAWA
Normal file
1
ships/A72QAWA
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts><DisconnectedPart><Parts><Part partType="strut-1" id="1160889" x="-16.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160868" x="-19.500000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160869" x="-18.000000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160870" x="-16.500000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160871" x="-15.000000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160873" x="-13.500000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="wheel-2" id="1160892" x="-12.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160893" x="-12.000000" y="11.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="wheel-2" id="1160894" x="-11.500000" y="10.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160895" x="-11.000000" y="13.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1160889" childPart="1160868"/><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1160889" childPart="1160869"/><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1160889" childPart="1160870"/><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1160889" childPart="1160871"/><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1160889" childPart="1160873"/><Connection parentAttachPoint="4" childAttachPoint="1" parentPart="1160889" childPart="1160892"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1160892" childPart="1160893"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1160893" childPart="1160894"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1160894" childPart="1160895"/></Connections></DisconnectedPart></DisconnectedParts><Parts><Part partType="pod-1" id="1" x="0.000000" y="-1.250000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"><Step><Activate Id="1160686" moved="0"/></Step><Step><Activate Id="1160683" moved="0"/></Step></Staging></Pod></Part><Part partType="detacher-1" id="1160683" x="0.000000" y="-0.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1160684" x="0.000000" y="-0.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1160685" x="0.000000" y="1.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="detacher-1" id="1160686" x="10.000000" y="0.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="port-1" id="1160687" x="10.000000" y="-0.250000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1160694" x="10.000000" y="-0.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1" childPart="1160683"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1160683" childPart="1160684"/><DockConnection dockPart="1160684" parentPart="1160684" childPart="1160685"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1160685" childPart="1160686"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1160686" childPart="1160687"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1160685" childPart="1160694"/></Connections></Ship>
|
1
ships/A72QAWAA
Normal file
1
ships/A72QAWAA
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72S
Normal file
1
ships/A72S
Normal file
File diff suppressed because one or more lines are too long
1
ships/A72W
Normal file
1
ships/A72W
Normal file
File diff suppressed because one or more lines are too long
1
ships/A81A
Normal file
1
ships/A81A
Normal file
File diff suppressed because one or more lines are too long
1
ships/AHBML Is
Normal file
1
ships/AHBML Is
Normal file
File diff suppressed because one or more lines are too long
1
ships/AaQA
Normal file
1
ships/AaQA
Normal file
File diff suppressed because one or more lines are too long
1
ships/AaQAa
Normal file
1
ships/AaQAa
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts><DisconnectedPart><Parts><Part partType="detacher-1" id="1159044" x="0.000000" y="-2.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1159045" x="0.000000" y="-2.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="parachute-1" id="1159046" x="0.000000" y="1.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="0.000000" chuteY="1.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.000000" inflate="0" deployed="0" rope="0"/><Part partType="detacher-1" id="1159047" x="0.000000" y="2.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="port-1" id="1159048" x="0.000000" y="2.300000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1159049" x="0.000000" y="1.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="detacher-1" id="1159052" x="0.000000" y="3.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="pod-1" id="1159054" x="0.000000" y="-1.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part><Part partType="engine-2" id="1159053" x="0.000000" y="-0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="fueltank-1" id="1159055" x="0.000000" y="0.000000" angle="0.000000" angleV="0.000000" editorAngle="0"><Tank fuel="1500.000000"/></Part></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1159044" childPart="1159045"/><DockConnection dockPart="1159045" parentPart="1159045" childPart="1159046"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1159046" childPart="1159047"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1159047" childPart="1159048"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1159046" childPart="1159049"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1159044" childPart="1159052"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1159052" childPart="1159054"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1159054" childPart="1159053"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1159053" childPart="1159055"/></Connections></DisconnectedPart></DisconnectedParts><Parts><Part partType="pod-1" id="1" x="0.000000" y="-7.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part></Parts><Connections/></Ship>
|
3233
ships/Alabaster Synchoronization
Normal file
3233
ships/Alabaster Synchoronization
Normal file
File diff suppressed because it is too large
Load Diff
1
ships/Alliance
Normal file
1
ships/Alliance
Normal file
File diff suppressed because one or more lines are too long
1
ships/Alliance 0401002
Normal file
1
ships/Alliance 0401002
Normal file
File diff suppressed because one or more lines are too long
1
ships/Alliance 10
Normal file
1
ships/Alliance 10
Normal file
File diff suppressed because one or more lines are too long
1
ships/Amect-MAIIa
Normal file
1
ships/Amect-MAIIa
Normal file
File diff suppressed because one or more lines are too long
1
ships/Amect-MAIIa TEST
Normal file
1
ships/Amect-MAIIa TEST
Normal file
File diff suppressed because one or more lines are too long
1
ships/Amect-MAIIb
Normal file
1
ships/Amect-MAIIb
Normal file
File diff suppressed because one or more lines are too long
1
ships/AmectVII
Normal file
1
ships/AmectVII
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part><Part partType="strut-1" id="2" x="0.000000" y="-0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="3" x="0.000000" y="-1.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="5" x="0.000000" y="-2.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="2"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="2" childPart="3"/><DockC可以改成随便什么东西,都是合法的 dockPart="5" parentPart="3" childPart="5"/></Connections></Ship>
|
1
ships/Anthurium
Normal file
1
ships/Anthurium
Normal file
File diff suppressed because one or more lines are too long
17864
ships/Anthurium All
Normal file
17864
ships/Anthurium All
Normal file
File diff suppressed because it is too large
Load Diff
1
ships/Aooo
Normal file
1
ships/Aooo
Normal file
File diff suppressed because one or more lines are too long
1
ships/Arctic Glacier Carrier
Normal file
1
ships/Arctic Glacier Carrier
Normal file
File diff suppressed because one or more lines are too long
1
ships/Arctic Seal Destorier
Normal file
1
ships/Arctic Seal Destorier
Normal file
File diff suppressed because one or more lines are too long
1
ships/Bob 1
Normal file
1
ships/Bob 1
Normal file
File diff suppressed because one or more lines are too long
1
ships/C test
Normal file
1
ships/C test
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.000000" y="-0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"><Step><Activate Id="1145160" moved="1"/><Activate Id="1145157" moved="1"/></Step><Step><Activate Id="1145154" moved="1"/></Step></Staging></Pod></Part><Part partType="detacher-1" id="1145154" x="0.000000" y="0.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1145155" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="fueltank-0" id="1145156" x="0.000000" y="5.500000" angle="0.000000" angleV="0.000000" editorAngle="0"><Tank fuel="1500.000000"/></Part><Part partType="detacher-1" id="1145157" x="0.000000" y="8.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="port-1" id="1145158" x="0.000000" y="8.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="1145159" x="0.000000" y="6.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="engine-3" id="1145160" x="0.000000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1" childPart="1145154"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1145154" childPart="1145155"/><DockConnection dockPart="1145155" parentPart="1145155" childPart="1145156"/><Connection parentAttachPoint="3" childAttachPoint="1" parentPart="1145156" childPart="1145157"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1145157" childPart="1145158"/><Connection parentAttachPoint="4" childAttachPoint="1" parentPart="1145156" childPart="1145159"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1145156" childPart="1145160"/></Connections></Ship>
|
1
ships/CD DD
Normal file
1
ships/CD DD
Normal file
File diff suppressed because one or more lines are too long
1
ships/CQ1111
Normal file
1
ships/CQ1111
Normal file
File diff suppressed because one or more lines are too long
1
ships/Co123
Normal file
1
ships/Co123
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.0" y="0.500000" angle="0." angleV="0.000000" editorAngle="1"><Pod throttle="0.000000" name=""><Staging currentStage="0"><Step><Activate Id="1193446" moved="1"/><Activate Id="1193453" moved="1"/></Step><Step><Activate Id="1193448" moved="1"/><Activate Id="1193456" moved="1"/></Step><Step><Activate Id="1193443" moved="1"/><Activate Id="1193450" moved="1"/></Step></Staging></Pod></Part><Part partType="engine-3" id="1193443" x="-2.250000" y="-1.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="fueltank-0" id="1193444" x="-2.250000" y="-4.750000" angle="4.712389" angleV="0.000000" editorAngle="3"><Tank fuel="0.000000"/></Part><Part partType="rcs-1" id="1193445" x="-3.000000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/><Part partType="ion-0" id="1193446" x="-2.250000" y="-6.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="battery-0" id="1193447" x="-2.250000" y="-7.000000" angle="0.000000" angleV="0.000000" editorAngle="0"><Tank fuel="250.000000"/></Part><Part partType="fueltank-5" id="1193449" x="-2.250000" y="-7.750000" angle="1.570796" angleV="0.000000" editorAngle="1"><Tank fuel="275.000000"/></Part><Part partType="detacher-2" id="1193448" x="-1.500000" y="-4.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="engine-3" id="1193450" x="2.250000" y="-1.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="fueltank-0" id="1193451" x="2.250000" y="-4.750000" angle="4.712389" angleV="0.000000" editorAngle="3"><Tank fuel="0.000000"/></Part><Part partType="ion-0" id="1193453" x="2.250000" y="-6.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="battery-0" id="1193454" x="2.250000" y="-7.000000" angle="0.000000" angleV="0.000000" editorAngle="0"><Tank fuel="250.000000"/></Part><Part partType="fueltank-5" id="1193455" x="2.250000" y="-7.750000" angle="1.570796" angleV="0.000000" editorAngle="1"><Tank fuel="275.000000"/></Part><Part partType="detacher-2" id="1193456" x="1.500000" y="-4.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="rcs-1" id="1193452" x="3.000000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1" childPart="1193443"/><Connection parentAttachPoint="1" childAttachPoint="3" parentPart="1193443" childPart="1193444"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193444" childPart="1193445"/><Connection parentAttachPoint="4" childAttachPoint="1" parentPart="1193444" childPart="1193446"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193446" childPart="1193447"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193447" childPart="1193449"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1193444" childPart="1193448"/><Connection parentAttachPoint="2" childAttachPoint="2" parentPart="1" childPart="1193450"/><Connection parentAttachPoint="1" childAttachPoint="3" parentPart="1193450" childPart="1193451"/><Connection parentAttachPoint="4" childAttachPoint="1" parentPart="1193451" childPart="1193453"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193453" childPart="1193454"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193454" childPart="1193455"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1193451" childPart="1193456"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1193451" childPart="1193452"/></Connections></Ship>
|
1
ships/Co13
Normal file
1
ships/Co13
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts><DisconnectedPart><Parts><Part partType="detacher-2" id="1183894" x="2.750000" y="11.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections/></DisconnectedPart></DisconnectedParts><Parts><Part partType="pod-1" id="1" x="0.000000" y="5.250000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"><Step><Activate Id="1183897" moved="1"/></Step><Step><Activate Id="1183890" moved="1"/></Step></Staging></Pod></Part><Part partType="engine-3" id="1183890" x="0.000000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="fueltank-0" id="1183891" x="0.000000" y="11.000000" angle="4.712389" angleV="0.000000" editorAngle="3"><Tank fuel="750.000000"/></Part><Part partType="rcs-1" id="1183892" x="-0.750000" y="11.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="1" flippedY="0"/><Part partType="ion-0" id="1183897" x="0.000000" y="12.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"><Engine fuel="0.000000"/></Part><Part partType="battery-0" id="1183895" x="0.000000" y="13.250000" angle="0.000000" angleV="0.000000" editorAngle="0"><Tank fuel="250.000000"/></Part><Part partType="fueltank-5" id="1183896" x="0.000000" y="14.000000" angle="1.570796" angleV="0.000000" editorAngle="1"><Tank fuel="275.000000"/></Part><Part partType="rcs-1" id="1183899" x="0.750000" y="11.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1" childPart="1183890"/><Connection parentAttachPoint="1" childAttachPoint="4" parentPart="1183890" childPart="1183891"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1183891" childPart="1183892"/><Connection parentAttachPoint="3" childAttachPoint="1" parentPart="1183891" childPart="1183897"/><Connection parentAttachPoint="2" childAttachPoint="2" parentPart="1183897" childPart="1183895"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1183895" childPart="1183896"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1183891" childPart="1183899"/></Connections></Ship>
|
1
ships/DDGX6
Normal file
1
ships/DDGX6
Normal file
File diff suppressed because one or more lines are too long
1
ships/Doci
Normal file
1
ships/Doci
Normal file
File diff suppressed because one or more lines are too long
1
ships/Doco
Normal file
1
ships/Doco
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part><Part partType="strut-1" id="62" x="0.000000" y="-0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="dock-1" id="63" x="0.000000" y="-0.50000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="21" x="0.000000" y="-1.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="22" x="0.000000" y="-2.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="23" x="0.000000" y="-3.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="24" x="0.000000" y="-4.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="25" x="0.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="62"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="62" childPart="63"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="63" childPart="21"/><DockConnection dockPart="22" parentPart="21" childPart="22"/><DockConnection dockPart="23" parentPart="22" childPart="23"/><DockConnection dockPart="24" parentPart="23" childPart="24"/><DockConnection dockPart="25" parentPart="24" childPart="25"/></Connections></Ship>
|
1
ships/E
Normal file
1
ships/E
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts><DisconnectedPart><Parts><Part partType="detacher-1" id="11451790" x="10.500000" y="4.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="parachute-1" id="11451807" x="10.500000" y="4.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="10.500000" chuteY="4.750000" chuteAngle="0.000000" chuteHeight="10.000000" inflation="-10000000.000000" inflate="1" deployed="1" rope="0"/><Part partType="dock-1" id="1145141" x="11.250000" y="4.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="wheel-2" id="114514" x="-8.750000" y="4.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="11451790" childPart="11451807"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="11451807" childPart="1145141"/><DockConnection dockPart="1145141" parentPart="1145141" childPart="114514"/></Connections></DisconnectedPart></DisconnectedParts><Parts><Part partType="pod-1" id="1" x="10.500000" y="3.250000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name="E"><Staging currentStage="0"/></Pod></Part></Parts><Connections/></Ship>
|
1
ships/Eartho
Normal file
1
ships/Eartho
Normal file
File diff suppressed because one or more lines are too long
1
ships/EarthsssS
Normal file
1
ships/EarthsssS
Normal file
File diff suppressed because one or more lines are too long
1
ships/EarthsssSZ
Normal file
1
ships/EarthsssSZ
Normal file
File diff suppressed because one or more lines are too long
1
ships/Edp7
Normal file
1
ships/Edp7
Normal file
File diff suppressed because one or more lines are too long
1
ships/Fallen Star
Normal file
1
ships/Fallen Star
Normal file
File diff suppressed because one or more lines are too long
441
ships/Fegine eXperimental
Normal file
441
ships/Fegine eXperimental
Normal file
@ -0,0 +1,441 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><Ship version="1" liftedOff="0" touchingGround="0">
|
||||
<DisconnectedParts/>
|
||||
<Parts>
|
||||
<Part partType="pod-1" id="1" x="33.000000" y="14.250000" angle="3.141593" angleV="0.000000" editorAngle="2">
|
||||
<Pod throttle="0.000000" name="Fegine eXperimental">
|
||||
<Staging currentStage="0">
|
||||
<Step>
|
||||
<Activate Id="119692" moved="1"/>
|
||||
<Activate Id="171522" moved="1"/>
|
||||
<Activate Id="141868" moved="1"/>
|
||||
<Activate Id="141869" moved="1"/>
|
||||
<Activate Id="119771" moved="1"/>
|
||||
<Activate Id="118430" moved="1"/>
|
||||
<Activate Id="119809" moved="1"/>
|
||||
<Activate Id="145250" moved="1"/>
|
||||
<Activate Id="170806" moved="1"/>
|
||||
<Activate Id="118439" moved="1"/>
|
||||
<Activate Id="118438" moved="1"/>
|
||||
<Activate Id="170800" moved="1"/>
|
||||
<Activate Id="170799" moved="1"/>
|
||||
<Activate Id="170801" moved="1"/>
|
||||
<Activate Id="118432" moved="1"/>
|
||||
<Activate Id="118431" moved="1"/>
|
||||
<Activate Id="170746" moved="1"/>
|
||||
<Activate Id="170822" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="171577" moved="1"/>
|
||||
<Activate Id="171579" moved="1"/>
|
||||
<Activate Id="171624" moved="1"/>
|
||||
<Activate Id="171573" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="170509" moved="1"/>
|
||||
<Activate Id="170505" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="170502" moved="1"/>
|
||||
<Activate Id="170498" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="119803" moved="1"/>
|
||||
<Activate Id="119800" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="170516" moved="1"/>
|
||||
<Activate Id="170512" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="141669" moved="1"/>
|
||||
<Activate Id="141667" moved="1"/>
|
||||
<Activate Id="141671" moved="1"/>
|
||||
<Activate Id="141672" moved="1"/>
|
||||
<Activate Id="141673" moved="1"/>
|
||||
<Activate Id="141674" moved="1"/>
|
||||
<Activate Id="141675" moved="1"/>
|
||||
<Activate Id="141676" moved="1"/>
|
||||
<Activate Id="141677" moved="1"/>
|
||||
<Activate Id="141678" moved="1"/>
|
||||
<Activate Id="141679" moved="1"/>
|
||||
<Activate Id="141680" moved="1"/>
|
||||
<Activate Id="141681" moved="1"/>
|
||||
<Activate Id="141682" moved="1"/>
|
||||
<Activate Id="141683" moved="1"/>
|
||||
<Activate Id="141684" moved="1"/>
|
||||
<Activate Id="141687" moved="1"/>
|
||||
<Activate Id="141688" moved="1"/>
|
||||
<Activate Id="141689" moved="1"/>
|
||||
<Activate Id="141690" moved="1"/>
|
||||
<Activate Id="141691" moved="1"/>
|
||||
<Activate Id="141692" moved="1"/>
|
||||
<Activate Id="141693" moved="1"/>
|
||||
<Activate Id="141694" moved="1"/>
|
||||
<Activate Id="141695" moved="1"/>
|
||||
<Activate Id="141696" moved="1"/>
|
||||
<Activate Id="141697" moved="1"/>
|
||||
<Activate Id="141698" moved="1"/>
|
||||
<Activate Id="171392" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="170821" moved="1"/>
|
||||
<Activate Id="171576" moved="1"/>
|
||||
<Activate Id="171570" moved="1"/>
|
||||
<Activate Id="170510" moved="1"/>
|
||||
<Activate Id="170511" moved="1"/>
|
||||
<Activate Id="171586" moved="1"/>
|
||||
<Activate Id="171587" moved="1"/>
|
||||
<Activate Id="170500" moved="1"/>
|
||||
<Activate Id="170507" moved="1"/>
|
||||
<Activate Id="145283" moved="1"/>
|
||||
<Activate Id="145282" moved="1"/>
|
||||
<Activate Id="145292" moved="1"/>
|
||||
<Activate Id="170748" moved="1"/>
|
||||
<Activate Id="145291" moved="1"/>
|
||||
<Activate Id="145328" moved="1"/>
|
||||
<Activate Id="170808" moved="1"/>
|
||||
<Activate Id="170823" moved="1"/>
|
||||
<Activate Id="170246" moved="1"/>
|
||||
<Activate Id="145293" moved="1"/>
|
||||
<Activate Id="171405" moved="1"/>
|
||||
<Activate Id="171571" moved="1"/>
|
||||
<Activate Id="171619" moved="1"/>
|
||||
<Activate Id="171623" moved="1"/>
|
||||
<Activate Id="171622" moved="1"/>
|
||||
<Activate Id="171618" moved="1"/>
|
||||
</Step>
|
||||
</Staging>
|
||||
</Pod>
|
||||
</Part>
|
||||
<Part partType="strut-1" id="170238" x="34.000000" y="15.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118392" x="38.500000" y="12.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-2" id="171664" x="37.000000" y="11.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="3000.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-2" id="119692" x="34.500000" y="12.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-1" id="171522" x="35.000000" y="10.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="strut-1" id="118398" x="34.000000" y="8.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118419" x="30.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118420" x="22.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118421" x="14.000000" y="7.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118422" x="6.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118423" x="-2.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="118432" x="0.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="170770" x="-9.000000" y="8.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="118431" x="-4.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="170800" x="14.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="170799" x="10.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="170801" x="17.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="118438" x="28.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="118439" x="33.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="119764" x="26.000000" y="15.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="119766" x="18.000000" y="15.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="119767" x="10.000000" y="15.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="119768" x="2.000000" y="15.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="170512" x="3.500000" y="16.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="170513" x="3.500000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="170516" x="0.500000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="parachute-1" id="170823" x="4.750000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="4.750000" chuteY="17.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="parachute-1" id="170748" x="3.500000" y="17.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="3.500000" chuteY="17.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="wheel-2" id="170822" x="4.500000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="171650" x="-2.500000" y="14.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="93417" x="-3.500000" y="13.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145202" x="-7.000000" y="17.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145201" x="-11.500000" y="14.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145200" x="-8.000000" y="9.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145231" x="-12.500000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145274" x="-17.000000" y="15.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145275" x="-17.000000" y="13.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145276" x="-17.000000" y="11.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="40450" x="-17.000000" y="9.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="56796" x="-22.000000" y="8.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118374" x="-26.500000" y="12.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="145293" x="-27.250000" y="12.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-27.250000" chuteY="12.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="parachute-1" id="170246" x="-27.250000" y="15.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-27.250000" chuteY="15.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="141860" x="-31.000000" y="10.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="141861" x="-35.500000" y="11.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="145250" x="-35.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145248" x="-40.000000" y="8.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="solar-1" id="141868" x="-43.500000" y="9.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="1" flippedY="0" extension="0.000000"/>
|
||||
<Part partType="solar-1" id="141869" x="-39.500000" y="9.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="1" flippedY="0" extension="0.000000"/>
|
||||
<Part partType="strut-1" id="170759" x="-24.500000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="141844" x="-15.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="119809" x="-13.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="118430" x="-17.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="170792" x="-23.000000" y="7.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="119771" x="-20.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="170806" x="-24.000000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145317" x="0.500000" y="18.500000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="40381" x="-7.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="40382" x="-15.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118369" x="-23.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="141841" x="-28.000000" y="15.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="141667" x="-28.750000" y="16.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="141668" x="-29.500000" y="16.500000" angle="4.712389" angleV="0.000000" editorAngle="3">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="141669" x="-29.500000" y="13.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="lander-1" id="141671" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141672" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141673" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141674" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141675" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141676" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141677" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141678" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141679" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141680" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141681" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141682" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141683" x="-29.750000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141684" x="-29.250000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141687" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141688" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141689" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141690" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141691" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141692" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141693" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141694" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141695" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141696" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141697" x="-29.750000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="141698" x="-29.250000" y="17.250000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="parachute-1" id="171392" x="-30.250000" y="16.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-30.250000" chuteY="16.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="145322" x="-25.500000" y="14.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="118370" x="-23.500000" y="14.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145242" x="-19.000000" y="16.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="145283" x="-22.000000" y="15.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.000000" chuteY="15.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="145272" x="-19.000000" y="14.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="145282" x="-22.000000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.000000" chuteY="15.250000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="145273" x="-19.000000" y="12.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="145292" x="-22.000000" y="11.750000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.000000" chuteY="11.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="118371" x="-19.000000" y="10.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="145291" x="-22.000000" y="11.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.000000" chuteY="11.250000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="detacher-1" id="171570" x="-9.000000" y="19.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="171571" x="-9.000000" y="19.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="171572" x="-12.500000" y="20.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="171573" x="-9.500000" y="20.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="171575" x="-9.500000" y="21.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="171576" x="-9.500000" y="22.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="nosecone-1" id="171580" x="-9.500000" y="23.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="171577" x="-12.500000" y="21.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="171578" x="-15.000000" y="21.500000" angle="4.712389" angleV="0.000000" editorAngle="3">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="171579" x="-17.500000" y="21.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="nosecone-1" id="171668" x="-15.000000" y="23.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="battery-0" id="171581" x="-8.250000" y="21.500000" angle="4.712389" angleV="0.000000" editorAngle="3">
|
||||
<Tank fuel="250.000000"/>
|
||||
</Part>
|
||||
<Part partType="wheel-2" id="171622" x="-8.000000" y="21.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="171623" x="-8.000000" y="21.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="171621" x="-7.500000" y="21.500000" angle="1.570796" angleV="0.000000" editorAngle="1">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="wheel-2" id="171618" x="-7.000000" y="21.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="171619" x="-7.000000" y="21.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="nosecone-1" id="171620" x="-6.500000" y="21.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-0" id="171624" x="-7.500000" y="20.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="lander-1" id="171587" x="-8.250000" y="22.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="171586" x="-8.250000" y="20.750000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="strut-1" id="145306" x="8.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145307" x="16.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="145308" x="24.500000" y="18.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="119800" x="10.000000" y="16.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="119801" x="10.000000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="119803" x="7.000000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="parachute-1" id="170808" x="10.000000" y="17.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="10.000000" chuteY="17.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="engine-0" id="170821" x="11.500000" y="17.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="wheel-2" id="170746" x="11.000000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="170498" x="17.000000" y="16.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="170499" x="17.000000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="170502" x="14.000000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="parachute-1" id="145328" x="17.000000" y="17.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="17.000000" chuteY="17.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="parachute-1" id="170500" x="18.250000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="18.250000" chuteY="17.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="detacher-1" id="170505" x="23.500000" y="16.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="170506" x="23.500000" y="17.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="parachute-1" id="170507" x="24.750000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="24.750000" chuteY="17.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="engine-3" id="170509" x="20.500000" y="17.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="lander-1" id="170510" x="24.250000" y="16.750000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="170511" x="24.250000" y="17.250000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="parachute-1" id="171405" x="23.500000" y="17.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="23.500000" chuteY="17.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="170238"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="170238" childPart="118392"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="118392" childPart="171664"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171664" childPart="119692"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171664" childPart="171522"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="118392" childPart="118398"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118398" childPart="118419"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="118419" childPart="118420"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="3" parentPart="118420" childPart="118421"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="4" parentPart="118421" childPart="118422"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="118422" childPart="118423"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118423" childPart="118432"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118423" childPart="170770"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118423" childPart="118431"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118421" childPart="170800"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118421" childPart="170799"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118421" childPart="170801"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118419" childPart="118438"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118419" childPart="118439"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="4" parentPart="170238" childPart="119764"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="119764" childPart="119766"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="119766" childPart="119767"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="119767" childPart="119768"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="119768" childPart="170512"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="170512" childPart="170513"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="170513" childPart="170516"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="170513" childPart="170823"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="170513" childPart="170748"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="170513" childPart="170822"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="119768" childPart="171650"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="171650" childPart="93417"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="93417" childPart="145202"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="145202" childPart="145201"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="145201" childPart="145200"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="145201" childPart="145231"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="145231" childPart="145274"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="145231" childPart="145275"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="145231" childPart="145276"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="145231" childPart="40450"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="40450" childPart="56796"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="56796" childPart="118374"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118374" childPart="145293"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="118374" childPart="170246"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="118374" childPart="141860"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141860" childPart="141861"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141861" childPart="145250"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="141861" childPart="145248"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="145248" childPart="141868"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="145248" childPart="141869"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="56796" childPart="170759"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="56796" childPart="141844"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="141844" childPart="119809"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="141844" childPart="118430"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="56796" childPart="170792"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="170792" childPart="119771"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="170792" childPart="170806"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171650" childPart="145317"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="4" parentPart="145317" childPart="40381"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="40381" childPart="40382"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="40382" childPart="118369"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="118369" childPart="141841"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="141841" childPart="141667"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="141667" childPart="141668"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141669"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141671"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141672"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141673"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141674"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141675"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141676"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141677"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141678"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141679"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141680"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141681"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141682"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="141668" childPart="141683"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="141668" childPart="141684"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141687"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141688"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141689"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141690"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141691"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141692"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141693"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141694"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141695"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141696"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="141668" childPart="141697"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="141668" childPart="141698"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="141668" childPart="171392"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="118369" childPart="145322"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="118369" childPart="118370"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="118370" childPart="145242"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="145242" childPart="145283"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="118370" childPart="145272"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="145272" childPart="145282"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="118370" childPart="145273"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="145273" childPart="145292"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="118370" childPart="118371"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="118371" childPart="145291"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="40381" childPart="171570"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171570" childPart="171571"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="171571" childPart="171572"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="171572" childPart="171573"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="171573" childPart="171575"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="171575" childPart="171576"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171576" childPart="171580"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171575" childPart="171577"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="171577" childPart="171578"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="171578" childPart="171579"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171578" childPart="171668"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="171575" childPart="171581"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171581" childPart="171622"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171622" childPart="171623"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171622" childPart="171621"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="171621" childPart="171618"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171618" childPart="171619"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="171618" childPart="171620"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171621" childPart="171624"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="171581" childPart="171587"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="171581" childPart="171586"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="3" parentPart="145317" childPart="145306"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="145306" childPart="145307"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="145307" childPart="145308"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="119767" childPart="119800"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="119800" childPart="119801"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="119801" childPart="119803"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="119801" childPart="170808"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="119801" childPart="170821"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="119801" childPart="170746"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="119766" childPart="170498"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="170498" childPart="170499"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="170499" childPart="170502"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="170499" childPart="145328"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="170499" childPart="170500"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="119764" childPart="170505"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="170505" childPart="170506"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="170506" childPart="170507"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="170506" childPart="170509"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="170506" childPart="170510"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="170506" childPart="170511"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="170506" childPart="171405"/>
|
||||
</Connections>
|
||||
</Ship>
|
1
ships/Firewood
Normal file
1
ships/Firewood
Normal file
File diff suppressed because one or more lines are too long
1
ships/Flx1911
Normal file
1
ships/Flx1911
Normal file
File diff suppressed because one or more lines are too long
1
ships/Furl
Normal file
1
ships/Furl
Normal file
File diff suppressed because one or more lines are too long
1
ships/FurlA
Normal file
1
ships/FurlA
Normal file
File diff suppressed because one or more lines are too long
1
ships/GuXin
Normal file
1
ships/GuXin
Normal file
File diff suppressed because one or more lines are too long
1
ships/GzjS
Normal file
1
ships/GzjS
Normal file
File diff suppressed because one or more lines are too long
1
ships/HERA
Normal file
1
ships/HERA
Normal file
File diff suppressed because one or more lines are too long
1
ships/HL Pro+
Normal file
1
ships/HL Pro+
Normal file
File diff suppressed because one or more lines are too long
3209
ships/HeronA
Normal file
3209
ships/HeronA
Normal file
File diff suppressed because it is too large
Load Diff
3209
ships/HeronC
Normal file
3209
ships/HeronC
Normal file
File diff suppressed because it is too large
Load Diff
2273
ships/HeronIi
Normal file
2273
ships/HeronIi
Normal file
File diff suppressed because it is too large
Load Diff
1
ships/Heronb
Normal file
1
ships/Heronb
Normal file
File diff suppressed because one or more lines are too long
1
ships/Hxjq
Normal file
1
ships/Hxjq
Normal file
File diff suppressed because one or more lines are too long
512
ships/Jpp2
Normal file
512
ships/Jpp2
Normal file
@ -0,0 +1,512 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><Ship version="1" liftedOff="0" touchingGround="0">
|
||||
<DisconnectedParts>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="6813249164668774" x="-8.000000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="2725726867131838" x="-8.000000" y="14.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="3258675376868462" x="-8.000000" y="13.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="7544655779245239" x="-9.000000" y="14.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="rcs-1" id="6597636746675552" x="-6.500000" y="14.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="6813249164668774" childPart="2725726867131838"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="2725726867131838" childPart="3258675376868462"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="2725726867131838" childPart="7544655779245239"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="2725726867131838" childPart="6597636746675552"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="1579952215193618" x="-22.500000" y="13.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="4834788614124198" x="-22.500000" y="13.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="8312688242667532" x="-22.500000" y="12.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="1277328981662677" x="-23.500000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="rcs-1" id="9249936524367445" x="-21.000000" y="13.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1579952215193618" childPart="4834788614124198"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4834788614124198" childPart="8312688242667532"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="4834788614124198" childPart="1277328981662677"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="4834788614124198" childPart="9249936524367445"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="7369136695198548" x="-4.000000" y="14.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="7995519579935741" x="-4.000000" y="14.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="3843799739362772" x="-4.000000" y="13.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="1724945544515774" x="-5.000000" y="14.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="rcs-1" id="3197376214283483" x="-2.500000" y="14.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7369136695198548" childPart="7995519579935741"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7995519579935741" childPart="3843799739362772"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="7995519579935741" childPart="1724945544515774"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="7995519579935741" childPart="3197376214283483"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="4112315282793366" x="-7.500000" y="16.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="7873232991632937" x="-7.500000" y="16.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="9986192684437565" x="-7.500000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="9144733544822452" x="-8.500000" y="16.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="rcs-1" id="2167242725127612" x="-6.000000" y="16.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4112315282793366" childPart="7873232991632937"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7873232991632937" childPart="9986192684437565"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="7873232991632937" childPart="9144733544822452"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="7873232991632937" childPart="2167242725127612"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="8463978227551944" x="-4.500000" y="17.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="7527724379241942" x="-4.500000" y="16.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="3349733329496761" x="-4.500000" y="15.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="3745349721621681" x="-5.500000" y="16.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="rcs-1" id="1564618445827111" x="-3.000000" y="16.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8463978227551944" childPart="7527724379241942"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7527724379241942" childPart="3349733329496761"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="7527724379241942" childPart="3745349721621681"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="7527724379241942" childPart="1564618445827111"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="8277693429334362" x="-5.500000" y="16.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="5597182228431326" x="-5.500000" y="16.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="4454459183573797" x="-5.500000" y="15.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="7759468818726896" x="-4.250000" y="16.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-4.250000" chuteY="16.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="engine-3" id="8653349137371461" x="-6.500000" y="16.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="nosecone-1" id="9846756146595887" x="-4.000000" y="16.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="rcs-1" id="3584449698659567" x="-4.000000" y="16.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8277693429334362" childPart="5597182228431326"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5597182228431326" childPart="4454459183573797"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="5597182228431326" childPart="7759468818726896"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="5597182228431326" childPart="8653349137371461"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="5597182228431326" childPart="9846756146595887"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="5597182228431326" childPart="3584449698659567"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="detacher-1" id="4913146992552155" x="-26.500000" y="13.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="3695669622947113" x="-26.500000" y="13.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="detacher-1" id="6595252936573519" x="-26.500000" y="12.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="8344446121692585" x="-25.250000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-25.250000" chuteY="13.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="engine-3" id="7286169815424598" x="-27.500000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="nosecone-1" id="8692132426956148" x="-25.000000" y="13.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="rcs-1" id="4985126965587135" x="-25.000000" y="13.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4913146992552155" childPart="3695669622947113"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="3695669622947113" childPart="6595252936573519"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="3695669622947113" childPart="8344446121692585"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="3695669622947113" childPart="7286169815424598"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="3695669622947113" childPart="8692132426956148"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="3695669622947113" childPart="4985126965587135"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="3813962392752914" x="-15.250000" y="10.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-15.250000" chuteY="10.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="6288278319273479" x="-14.250000" y="6.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-14.250000" chuteY="6.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="9137899251632667" x="-15.250000" y="6.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-15.250000" chuteY="6.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="lander-1" id="2253689814574861" x="66.000000" y="21.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="lander-1" id="2735371156813779" x="69.000000" y="22.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="8691583371495751" x="14.500000" y="13.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="14.500000" chuteY="13.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="4216818359247536" x="18.250000" y="11.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="18.250000" chuteY="11.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="parachute-1" id="5142651833297635" x="27.000000" y="6.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="27.000000" chuteY="6.750000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="strut-1" id="4516236624682931" x="48.000000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="strut-1" id="6438297241641563" x="16.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="6823251287337676" x="15.000000" y="2.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="3426993582295455" x="15.000000" y="1.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="3217929492751778" x="12.000000" y="1.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="strut-1" id="5894544293884885" x="18.000000" y="0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7412489645786897" x="26.000000" y="0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="lander-1" id="2665319563667917" x="28.750000" y="1.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="wheel-2" id="2283692696549288" x="30.000000" y="0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="2148361371153727" x="15.000000" y="0.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="6438297241641563" childPart="6823251287337676"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="6823251287337676" childPart="3426993582295455"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="3426993582295455" childPart="3217929492751778"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="3426993582295455" childPart="5894544293884885"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="5894544293884885" childPart="7412489645786897"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="7412489645786897" childPart="2665319563667917"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="7412489645786897" childPart="2283692696549288"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5894544293884885" childPart="2148361371153727"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="fueltank-0" id="6528257697149183" x="4.500000" y="10.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="1492988537865629" x="1.500000" y="10.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="parachute-1" id="3839854529967115" x="-0.750000" y="10.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-0.750000" chuteY="10.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="6528257697149183" childPart="1492988537865629"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1492988537865629" childPart="3839854529967115"/>
|
||||
</Connections>
|
||||
</DisconnectedPart>
|
||||
<DisconnectedPart>
|
||||
<Parts>
|
||||
<Part partType="strut-1" id="4357427732271743" x="-3.000000" y="11.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
</Parts>
|
||||
<Connections/>
|
||||
</DisconnectedPart>
|
||||
</DisconnectedParts>
|
||||
<Parts>
|
||||
<Part partType="pod-1" id="1" x="10.500000" y="0.250000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Pod throttle="0.000000" name="">
|
||||
<Staging currentStage="0">
|
||||
<Step>
|
||||
<Activate Id="5964777215562244" moved="1"/>
|
||||
<Activate Id="8635456632688661" moved="1"/>
|
||||
<Activate Id="3349758762223262" moved="1"/>
|
||||
<Activate Id="9345254896523952" moved="1"/>
|
||||
<Activate Id="9482258886149836" moved="1"/>
|
||||
<Activate Id="1618938682257289" moved="1"/>
|
||||
<Activate Id="6912394725674216" moved="1"/>
|
||||
<Activate Id="9867174739249716" moved="1"/>
|
||||
<Activate Id="2143267678674353" moved="1"/>
|
||||
<Activate Id="2711774669352646" moved="1"/>
|
||||
<Activate Id="4542413542611414" moved="1"/>
|
||||
<Activate Id="3198214739315864" moved="1"/>
|
||||
<Activate Id="4525864884767265" moved="1"/>
|
||||
<Activate Id="4869279743482315" moved="1"/>
|
||||
<Activate Id="5477333994842566" moved="1"/>
|
||||
<Activate Id="8344766765949476" moved="1"/>
|
||||
<Activate Id="4235399746917433" moved="1"/>
|
||||
<Activate Id="9272213541435968" moved="1"/>
|
||||
<Activate Id="1551288144282356" moved="1"/>
|
||||
<Activate Id="8124992727979843" moved="1"/>
|
||||
<Activate Id="6693682725118915" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="3952527495698366" moved="1"/>
|
||||
<Activate Id="2836492179192416" moved="1"/>
|
||||
<Activate Id="5477854513665927" moved="1"/>
|
||||
<Activate Id="4544494271528317" moved="1"/>
|
||||
<Activate Id="6472731937896642" moved="1"/>
|
||||
<Activate Id="9548477637975944" moved="1"/>
|
||||
<Activate Id="4569842428533243" moved="1"/>
|
||||
</Step>
|
||||
<Step>
|
||||
<Activate Id="6144512855598759" moved="1"/>
|
||||
<Activate Id="8788344831829711" moved="1"/>
|
||||
<Activate Id="9664489561559144" moved="1"/>
|
||||
<Activate Id="8743684488122911" moved="1"/>
|
||||
<Activate Id="8334854896225565" moved="1"/>
|
||||
<Activate Id="1449587468395436" moved="1"/>
|
||||
<Activate Id="9449714118971527" moved="1"/>
|
||||
<Activate Id="8724451194437782" moved="1"/>
|
||||
<Activate Id="6351253641682718" moved="1"/>
|
||||
<Activate Id="2839931622127568" moved="1"/>
|
||||
<Activate Id="5323849414197883" moved="1"/>
|
||||
<Activate Id="9528877733565986" moved="1"/>
|
||||
<Activate Id="9564983967465873" moved="1"/>
|
||||
</Step>
|
||||
</Staging>
|
||||
</Pod>
|
||||
</Part>
|
||||
<Part partType="strut-1" id="6739449412732798" x="12.500000" y="-1.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9646149886415515" x="17.000000" y="-1.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7919356567847774" x="13.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="6351914282781244" x="5.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9644135199457355" x="-2.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="3485312484657957" x="-10.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7235552133856919" x="-14.500000" y="4.000000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7191982258566468" x="-15.500000" y="5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9795861134649825" x="-20.000000" y="1.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5799512557623889" x="-24.500000" y="5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5173436391688384" x="-21.500000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="8334854896225565" x="-22.250000" y="1.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.250000" chuteY="1.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="parachute-1" id="1449587468395436" x="-22.250000" y="-1.500000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-22.250000" chuteY="-1.500000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="8238437321487277" x="-26.500000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="6645239419981526" x="-29.000000" y="1.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="1376242393862646" x="-33.500000" y="4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="4126219496348834" x="-38.000000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="8788344831829711" x="-12.000000" y="5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="9564983967465873" x="-12.000000" y="6.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="8431829836855597" x="-13.500000" y="6.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9444965325415412" x="-21.500000" y="6.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="6472731937896642" x="-10.500000" y="7.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-0" id="1197274823632112" x="-10.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="4436572463336993" x="-8.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-0" id="3952527495698366" x="-8.500000" y="7.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="wheel-2" id="9528877733565986" x="-8.500000" y="6.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="nosecone-1" id="7778964152418534" x="-7.000000" y="8.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="lander-1" id="9664489561559144" x="-6.750000" y="8.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="8743684488122911" x="-6.750000" y="7.750000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="wheel-2" id="5323849414197883" x="-8.500000" y="8.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="detacher-1" id="6144512855598759" x="-10.500000" y="8.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="engine-3" id="2836492179192416" x="-11.500000" y="8.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="9546578637972485" x="-14.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="lander-1" id="4569842428533243" x="-14.250000" y="7.250000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="lander-1" id="9548477637975944" x="-14.250000" y="8.750000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="0.000000"/>
|
||||
<Part partType="engine-3" id="4544494271528317" x="-17.500000" y="8.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="6152621361448289" x="-20.000000" y="8.000000" angle="4.712389" angleV="0.000000" editorAngle="3">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="5477854513665927" x="-22.500000" y="8.000000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="wheel-2" id="2839931622127568" x="-24.500000" y="8.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="4224623544664338" x="12.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="8239785711241339" x="4.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="4268231388728832" x="-3.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="8545874453165267" x="-3.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="4869279743482315" x="-6.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="5477333994842566" x="-4.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="8344766765949476" x="-2.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9151962491685684" x="-8.000000" y="-3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="2814469675126963" x="-11.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5966993765582899" x="-11.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="9867174739249716" x="-11.750000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="2143267678674353" x="-9.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="2711774669352646" x="-14.500000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5434858638427642" x="-19.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="9482258886149836" x="-22.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="1618938682257289" x="-16.750000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="6912394725674216" x="-20.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5375752735172811" x="-20.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7155821897258166" x="-25.000000" y="-0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="9449714118971527" x="-25.750000" y="-2.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-25.750000" chuteY="-2.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="parachute-1" id="8724451194437782" x="-25.750000" y="1.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="-25.750000" chuteY="1.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
<Part partType="strut-1" id="2287992838676621" x="-23.000000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5984494462753865" x="-27.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="8635456632688661" x="-24.500000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5727867278122677" x="-29.500000" y="-4.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5392346564218979" x="-27.500000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="1716182753188586" x="-35.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="6385919891647762" x="-40.000000" y="-1.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="5764915968723734" x="-32.000000" y="-3.000000" angle="3.141593" angleV="0.000000" editorAngle="2" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="4355951546536724" x="-36.500000" y="-0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="3349758762223262" x="-27.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="9345254896523952" x="-30.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="8914446576545756" x="-19.000000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="2264488848882569" x="-16.000000" y="-0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="1694717574428514" x="-11.500000" y="2.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="fueltank-1" id="6482829944581685" x="-8.500000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3">
|
||||
<Tank fuel="1500.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="9166617812428558" x="-6.500000" y="0.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="fueltank-0" id="9821973686762861" x="-6.500000" y="1.500000" angle="0.000000" angleV="0.000000" editorAngle="0">
|
||||
<Tank fuel="750.000000"/>
|
||||
</Part>
|
||||
<Part partType="engine-3" id="5964777215562244" x="-11.500000" y="0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0">
|
||||
<Engine fuel="0.000000"/>
|
||||
</Part>
|
||||
<Part partType="strut-1" id="1535562726372222" x="4.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="4542413542611414" x="1.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="3198214739315864" x="8.000000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="4525864884767265" x="4.500000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="9945772762854239" x="12.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="4235399746917433" x="12.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="9272213541435968" x="10.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="1551288144282356" x="15.250000" y="-5.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="7776184845948346" x="18.000000" y="-0.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="2241389995194459" x="21.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="8124992727979843" x="25.500000" y="-5.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="wheel-2" id="6693682725118915" x="23.500000" y="-5.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="strut-1" id="1119227811939266" x="22.500000" y="3.000000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/>
|
||||
<Part partType="parachute-1" id="6351253641682718" x="8.750000" y="-1.000000" angle="1.570796" angleV="0.000000" editorAngle="1" activated="0" exploded="0" flippedX="0" flippedY="0" chuteX="8.750000" chuteY="-1.000000" chuteAngle="0.000000" chuteHeight="0.000000" inflation="0.100000" inflate="0" deployed="0" rope="0"/>
|
||||
</Parts>
|
||||
<Connections>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="6739449412732798"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="6739449412732798" childPart="9646149886415515"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="2" parentPart="9646149886415515" childPart="7919356567847774"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="7919356567847774" childPart="6351914282781244"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="6351914282781244" childPart="9644135199457355"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="9644135199457355" childPart="3485312484657957"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="3485312484657957" childPart="7235552133856919"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="2" parentPart="7235552133856919" childPart="7191982258566468"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="7191982258566468" childPart="9795861134649825"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="9795861134649825" childPart="5799512557623889"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="5799512557623889" childPart="5173436391688384"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5173436391688384" childPart="8334854896225565"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5173436391688384" childPart="1449587468395436"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="5799512557623889" childPart="8238437321487277"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="5799512557623889" childPart="6645239419981526"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="6645239419981526" childPart="1376242393862646"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="1376242393862646" childPart="4126219496348834"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="7191982258566468" childPart="8788344831829711"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="8788344831829711" childPart="9564983967465873"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="9564983967465873" childPart="8431829836855597"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="8431829836855597" childPart="9444965325415412"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="8431829836855597" childPart="6472731937896642"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="6472731937896642" childPart="1197274823632112"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="3" parentPart="1197274823632112" childPart="4436572463336993"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4436572463336993" childPart="3952527495698366"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="3952527495698366" childPart="9528877733565986"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="4436572463336993" childPart="7778964152418534"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="2" parentPart="4436572463336993" childPart="9664489561559144"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9664489561559144" childPart="8743684488122911"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="4436572463336993" childPart="5323849414197883"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1197274823632112" childPart="6144512855598759"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="1197274823632112" childPart="2836492179192416"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="2836492179192416" childPart="9546578637972485"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9546578637972485" childPart="4569842428533243"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="9546578637972485" childPart="9548477637975944"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="9546578637972485" childPart="4544494271528317"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4544494271528317" childPart="6152621361448289"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="6152621361448289" childPart="5477854513665927"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5477854513665927" childPart="2839931622127568"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="4" parentPart="9646149886415515" childPart="4224623544664338"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="4224623544664338" childPart="8239785711241339"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="8239785711241339" childPart="4268231388728832"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4268231388728832" childPart="8545874453165267"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8545874453165267" childPart="4869279743482315"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8545874453165267" childPart="5477333994842566"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8545874453165267" childPart="8344766765949476"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="4268231388728832" childPart="9151962491685684"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9151962491685684" childPart="2814469675126963"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="2814469675126963" childPart="5966993765582899"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5966993765582899" childPart="9867174739249716"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5966993765582899" childPart="2143267678674353"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5966993765582899" childPart="2711774669352646"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="4" parentPart="5966993765582899" childPart="5434858638427642"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5434858638427642" childPart="9482258886149836"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5434858638427642" childPart="1618938682257289"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5434858638427642" childPart="6912394725674216"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="5434858638427642" childPart="5375752735172811"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="5375752735172811" childPart="7155821897258166"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7155821897258166" childPart="9449714118971527"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="7155821897258166" childPart="8724451194437782"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="5375752735172811" childPart="2287992838676621"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5375752735172811" childPart="5984494462753865"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5984494462753865" childPart="8635456632688661"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="5984494462753865" childPart="5727867278122677"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="5727867278122677" childPart="5392346564218979"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5727867278122677" childPart="1716182753188586"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="1716182753188586" childPart="6385919891647762"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="5727867278122677" childPart="5764915968723734"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="5764915968723734" childPart="4355951546536724"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5984494462753865" childPart="3349758762223262"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="5984494462753865" childPart="9345254896523952"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="4" parentPart="5375752735172811" childPart="8914446576545756"/>
|
||||
<Connection parentAttachPoint="3" childAttachPoint="1" parentPart="2814469675126963" childPart="2264488848882569"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="2264488848882569" childPart="1694717574428514"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="3" parentPart="1694717574428514" childPart="6482829944581685"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="6482829944581685" childPart="9166617812428558"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="9166617812428558" childPart="9821973686762861"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="6482829944581685" childPart="5964777215562244"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="8239785711241339" childPart="1535562726372222"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1535562726372222" childPart="4542413542611414"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1535562726372222" childPart="3198214739315864"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1535562726372222" childPart="4525864884767265"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="4224623544664338" childPart="9945772762854239"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9945772762854239" childPart="4235399746917433"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9945772762854239" childPart="9272213541435968"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="9945772762854239" childPart="1551288144282356"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="2" parentPart="9646149886415515" childPart="7776184845948346"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="7776184845948346" childPart="2241389995194459"/>
|
||||
<Connection parentAttachPoint="4" childAttachPoint="1" parentPart="2241389995194459" childPart="8124992727979843"/>
|
||||
<Connection parentAttachPoint="2" childAttachPoint="1" parentPart="2241389995194459" childPart="6693682725118915"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="3" parentPart="7776184845948346" childPart="1119227811939266"/>
|
||||
<Connection parentAttachPoint="1" childAttachPoint="1" parentPart="6739449412732798" childPart="6351253641682718"/>
|
||||
</Connections>
|
||||
</Ship>
|
1
ships/Klml
Normal file
1
ships/Klml
Normal file
File diff suppressed because one or more lines are too long
1
ships/Lander
Normal file
1
ships/Lander
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts><DisconnectedPart><Parts><Part partType="detacher-1" id="1146797" x="0.000000" y="-2.250000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="strut-1" id="1146798" x="0.000000" y="-6.500000" angle="4.712389" angleV="0.000000" editorAngle="3" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="detacher-2" id="1146799" x="0.750000" y="-6.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="lander-1" id="1146800" x="1.250000" y="-6.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="1000.000000"/><Part partType="detacher-2" id="1146801" x="-0.750000" y="-6.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="lander-1" id="1146802" x="-1.250000" y="-6.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0" lower="0" raise="0" length="2.260000" legAngle="-1000.000000"/></Parts><Connections><Connection parentAttachPoint="2" childAttachPoint="3" parentPart="1146797" childPart="1146798"/><Connection parentAttachPoint="1" childAttachPoint="1" parentPart="1146798" childPart="1146799"/><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1146799" childPart="1146800"/><Connection parentAttachPoint="2" childAttachPoint="2" parentPart="1146798" childPart="1146801"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1146801" childPart="1146802"/></Connections></DisconnectedPart></DisconnectedParts><Parts><Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"/></Pod></Part><Part partType="strut-1" id="1146796" x="0.000000" y="-0.500000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/></Parts><Connections><Connection parentAttachPoint="2" childAttachPoint="1" parentPart="1" childPart="1146796"/></Connections></Ship>
|
1
ships/Ling
Normal file
1
ships/Ling
Normal file
File diff suppressed because one or more lines are too long
1
ships/Lpsdd
Normal file
1
ships/Lpsdd
Normal file
File diff suppressed because one or more lines are too long
1
ships/Macaroni
Normal file
1
ships/Macaroni
Normal file
File diff suppressed because one or more lines are too long
1
ships/Midparry
Normal file
1
ships/Midparry
Normal file
File diff suppressed because one or more lines are too long
1
ships/Mucas SP
Normal file
1
ships/Mucas SP
Normal file
File diff suppressed because one or more lines are too long
1
ships/Musca
Normal file
1
ships/Musca
Normal file
File diff suppressed because one or more lines are too long
1
ships/Muxing
Normal file
1
ships/Muxing
Normal file
File diff suppressed because one or more lines are too long
1
ships/NS b7
Normal file
1
ships/NS b7
Normal file
File diff suppressed because one or more lines are too long
1
ships/ORCA
Normal file
1
ships/ORCA
Normal file
File diff suppressed because one or more lines are too long
1
ships/Pod
Normal file
1
ships/Pod
Normal file
@ -0,0 +1 @@
|
||||
<Ship version="1" liftedOff="0" touchingGround="0"><DisconnectedParts/><Parts><Part partType="pod-1" id="1" x="0.000000" y="0.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name=""><Staging currentStage="0"></Staging></Pod></Part><Part partType="detacher-1" id="159291" x="0.000000" y="1.750000" angle="0.000000" angleV="0.000000" editorAngle="0" activated="0" exploded="0" flippedX="0" flippedY="0"/><Part partType="pod-1" id="159292" x="0.000000" y="2.750000" angle="0.000000" angleV="0.000000" editorAngle="0"><Pod throttle="0.000000" name="1"><Staging currentStage="0"><Step><Activate Id="159291" moved="0"/></Step></Staging></Pod></Part></Parts><Connections><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="1" childPart="159291"/><Connection parentAttachPoint="1" childAttachPoint="2" parentPart="159291" childPart="159292"/></Connections></Ship>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user