diff options
-rw-r--r-- | Resources/Anm/Jump.png | bin | 1718 -> 2040 bytes | |||
-rw-r--r-- | Resources/Anm/JumpSand.png | bin | 2081 -> 2235 bytes | |||
-rw-r--r-- | Resources/Anm/JumpSnow.png | bin | 2038 -> 2200 bytes | |||
-rw-r--r-- | Resources/Anm/Run.png | bin | 1665 -> 1703 bytes | |||
-rw-r--r-- | Resources/Anm/Swim.png | bin | 1614 -> 2548 bytes | |||
-rw-r--r-- | src/editorui/paths.py | 6 |
6 files changed, 4 insertions, 2 deletions
diff --git a/Resources/Anm/Jump.png b/Resources/Anm/Jump.png Binary files differindex adc12eb..55b19c0 100644 --- a/Resources/Anm/Jump.png +++ b/Resources/Anm/Jump.png diff --git a/Resources/Anm/JumpSand.png b/Resources/Anm/JumpSand.png Binary files differindex 4ddfc66..91ad3ed 100644 --- a/Resources/Anm/JumpSand.png +++ b/Resources/Anm/JumpSand.png diff --git a/Resources/Anm/JumpSnow.png b/Resources/Anm/JumpSnow.png Binary files differindex 5398c45..d4a7f57 100644 --- a/Resources/Anm/JumpSnow.png +++ b/Resources/Anm/JumpSnow.png diff --git a/Resources/Anm/Run.png b/Resources/Anm/Run.png Binary files differindex f2b06ad..5d40ebe 100644 --- a/Resources/Anm/Run.png +++ b/Resources/Anm/Run.png diff --git a/Resources/Anm/Swim.png b/Resources/Anm/Swim.png Binary files differindex aae1aef..bf56f5e 100644 --- a/Resources/Anm/Swim.png +++ b/Resources/Anm/Swim.png 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) |