Package org.jdesktop.wonderland.modules.avatarbase.client.registry.spi

Examples of org.jdesktop.wonderland.modules.avatarbase.client.registry.spi.AvatarSPI.configure()


        // Find the selected avatar. If the avatar does not require high-res
        // graphics, then go ahead and configure the avatar.
        AvatarSPI avatar = (AvatarSPI) avatarList.getSelectedValue();
        if (avatar.isHighResolution() == false) {
            avatar.configure();
            return;
        }

        if (!AvatarImiJME.supportsHighQualityAvatars()) {
            String msg = "Unfortunately your system graphics does not" +
View Full Code Here


        // Fetch the currently selected avatar and display a dialog box to
        // edit its configuration. Since the Customize button is only enabled
        // when an item is selected, we assume something is selected in the
        // list. At this point, we also know the graphics system supports the
        // avatar, if high-res.
        avatar.configure();
    }//GEN-LAST:event_customizeButtonActionPerformed

    private void newButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_newButtonActionPerformed

        if (!AvatarImiJME.supportsHighQualityAvatars()) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.