summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Resources/Anm/Jump.pngbin1718 -> 2040 bytes
-rw-r--r--Resources/Anm/JumpSand.pngbin2081 -> 2235 bytes
-rw-r--r--Resources/Anm/JumpSnow.pngbin2038 -> 2200 bytes
-rw-r--r--Resources/Anm/Run.pngbin1665 -> 1703 bytes
-rw-r--r--Resources/Anm/Swim.pngbin1614 -> 2548 bytes
-rw-r--r--src/editorui/paths.py6
6 files changed, 4 insertions, 2 deletions
diff --git a/Resources/Anm/Jump.png b/Resources/Anm/Jump.png
index adc12eb..55b19c0 100644
--- a/Resources/Anm/Jump.png
+++ b/Resources/Anm/Jump.png
Binary files differ
diff --git a/Resources/Anm/JumpSand.png b/Resources/Anm/JumpSand.png
index 4ddfc66..91ad3ed 100644
--- a/Resources/Anm/JumpSand.png
+++ b/Resources/Anm/JumpSand.png
Binary files differ
diff --git a/Resources/Anm/JumpSnow.png b/Resources/Anm/JumpSnow.png
index 5398c45..d4a7f57 100644
--- a/Resources/Anm/JumpSnow.png
+++ b/Resources/Anm/JumpSnow.png
Binary files differ
diff --git a/Resources/Anm/Run.png b/Resources/Anm/Run.png
index f2b06ad..5d40ebe 100644
--- a/Resources/Anm/Run.png
+++ b/Resources/Anm/Run.png
Binary files differ
diff --git a/Resources/Anm/Swim.png b/Resources/Anm/Swim.png
index aae1aef..bf56f5e 100644
--- a/Resources/Anm/Swim.png
+++ b/Resources/Anm/Swim.png
Binary files differ
diff --git a/src/editorui/paths.py b/src/editorui/paths.py
index d7a59be..ec98fb9 100644
--- a/src/editorui/paths.py
+++ b/src/editorui/paths.py
@@ -309,14 +309,14 @@ class KPEditorPath(QtGui.QGraphicsLineItem):
self.moveSpeedSpinner.setSingleStep(0.05)
self.moveSpeedSpinner.setValue(1.0)
- TopLayout.addWidget(self.moveSpeedSpinner, 0, 0)
+ TopLayout.addWidget(self.moveSpeedSpinner, 1, 0)
# Layer Combo Box
self.linkedLayer = QtGui.QComboBox(self)
self.linkedLayer.setModel(KP.map.layerModel)
- TopLayout.addWidget(self.linkedLayer, 0, 1, 1, 3)
+ TopLayout.addWidget(self.linkedLayer, 1, 1, 1, 3)
# Connections
@@ -326,6 +326,8 @@ class KPEditorPath(QtGui.QGraphicsLineItem):
self.linkedLayer.currentIndexChanged.connect(self.updateLinkLayer)
# Layout
+ TopLayout.addWidget(QtGui.QLabel("Speed:"), 0, 0)
+ TopLayout.addWidget(QtGui.QLabel("Layer Shown on Unlock:"), 0, 1, 1, 3)
Layout.addLayout(TopLayout, 0, 0, 1, 4)
self.setLayout(Layout)