Package javax.media.j3d

Examples of javax.media.j3d.Sound


/*     */   }
/*     */
/*     */   public void readObject(DataInput in) throws IOException {
/*  87 */     super.readObject(in);
/*     */
/*  89 */     Sound sound = (Sound)this.node;
/*     */
/*  91 */     sound.setContinuousEnable(in.readBoolean());
/*  92 */     sound.setEnable(in.readBoolean());
/*  93 */     sound.setInitialGain(in.readFloat());
/*  94 */     sound.setLoop(in.readInt());
/*  95 */     sound.setPriority(in.readFloat());
/*  96 */     sound.setReleaseEnable(in.readBoolean());
/*  97 */     this.boundingLeaf = in.readInt();
/*  98 */     sound.setSchedulingBounds(this.control.readBounds(in));
/*  99 */     this.mediaContainer = in.readInt();
/* 100 */     sound.setMute(in.readBoolean());
/* 101 */     sound.setPause(in.readBoolean());
/* 102 */     sound.setRateScaleFactor(in.readFloat());
/*     */   }
View Full Code Here

TOP

Related Classes of javax.media.j3d.Sound

Copyright © 2018 www.massapicom. 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.