|
From: <tre...@us...> - 2007-10-07 18:45:14
|
Revision: 485
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=485&view=rev
Author: trevorolio
Date: 2007-10-07 11:45:16 -0700 (Sun, 07 Oct 2007)
Log Message:
-----------
Added a bunch of face morphs to the Mike avatar.
Added a handy createMorph.sh script to make this process less painful.
Tweaked the body editor to show more morph controls.
Modified Paths:
--------------
maven/trunk/ogoglio-body-editor-applet/src/main/java/com/ogoglio/bodyeditor/BodyEditorApplet.java
Modified: maven/trunk/ogoglio-body-editor-applet/src/main/java/com/ogoglio/bodyeditor/BodyEditorApplet.java
===================================================================
--- maven/trunk/ogoglio-body-editor-applet/src/main/java/com/ogoglio/bodyeditor/BodyEditorApplet.java 2007-10-07 00:23:19 UTC (rev 484)
+++ maven/trunk/ogoglio-body-editor-applet/src/main/java/com/ogoglio/bodyeditor/BodyEditorApplet.java 2007-10-07 18:45:16 UTC (rev 485)
@@ -216,14 +216,14 @@
}
private class MorphListPanel extends Panel implements ActionListener {
- Dimension dimension = new Dimension(150, 300);
+ Dimension dimension = new Dimension(150, 565);
Button saveButton = new Button("Save");
public MorphListPanel() {
setPreferredSize(dimension);
setMinimumSize(dimension);
- setLayout(new FlowLayout(FlowLayout.CENTER, 0, 5));
+ setLayout(new FlowLayout(FlowLayout.CENTER, 0, 1));
setBackground(Color.WHITE);
}
@@ -263,7 +263,7 @@
float buttonStep = 0.1f;
- Dimension dimension = new Dimension(150, 65);
+ Dimension dimension = new Dimension(150, 50);
MorphDeltaMap morphDeltaMap = null;
@@ -338,7 +338,7 @@
}
private class BodyPickerPanel extends Panel implements ActionListener {
- Dimension dimension = new Dimension(150, 75);
+ Dimension dimension = new Dimension(150, 35);
JComboBox bodyComboBox = null;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|