Searched defs:write (Results 201 - 225 of 673) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRing.java204 public void write(JmeExporter e) throws IOException { method in class:Ring
206 capsule.write(center, "center", Vector3f.ZERO);
207 capsule.write(up, "up", Vector3f.UNIT_Z);
208 capsule.write(innerRadius, "innerRadius", 0f);
209 capsule.write(outerRadius, "outerRadius", 1f);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DAssetLinkNode.java177 public void write(JmeExporter e) throws IOException { method in class:AssetLinkNode
180 super.write(e);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DAbstractControl.java100 public void write(JmeExporter ex) throws IOException { method in class:AbstractControl
102 oc.write(enabled, "enabled", true);
103 oc.write(spatial, "spatial", null);
H A DCameraControl.java154 public void write(JmeExporter ex) throws IOException { method in class:CameraControl
155 super.write(ex);
156 ex.getCapsule(this).write(controlDir, CONTROL_DIR_NAME,
H A DLightControl.java184 public void write(JmeExporter ex) throws IOException { method in class:LightControl
185 super.write(ex);
186 ex.getCapsule(this).write(controlDir, CONTROL_DIR_NAME,
H A DLodControl.java185 public void write(JmeExporter ex) throws IOException{ method in class:LodControl
186 super.write(ex);
188 oc.write(trisPerPixel, "trisPerPixel", 1f);
189 oc.write(distTolerance, "distTolerance", 1f);
190 oc.write(numLevels, "numLevels", 0);
191 oc.write(numTris, "numTris", null);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DAbstractBox.java202 public void write(JmeExporter e) throws IOException { method in class:AbstractBox
203 super.write(e);
205 capsule.write(xExtent, "xExtent", 0);
206 capsule.write(yExtent, "yExtent", 0);
207 capsule.write(zExtent, "zExtent", 0);
208 capsule.write(center, "center", Vector3f.ZERO);
H A DCylinder.java407 public void write(JmeExporter e) throws IOException { method in class:Cylinder
408 super.write(e);
410 capsule.write(axisSamples, "axisSamples", 0);
411 capsule.write(radialSamples, "radialSamples", 0);
412 capsule.write(radius, "radius", 0);
413 capsule.write(radius2, "radius2", 0);
414 capsule.write(height, "height", 0);
415 capsule.write(closed, "closed", false);
416 capsule.write(inverted, "inverted", false);
H A DPQTorus.java228 public void write(JmeExporter e) throws IOException { method in class:PQTorus
229 super.write(e);
231 capsule.write(p, "p", 0);
232 capsule.write(q, "q", 0);
233 capsule.write(radius, "radius", 0);
234 capsule.write(width, "width", 0);
235 capsule.write(steps, "steps", 0);
236 capsule.write(radialSamples, "radialSamples", 0);
H A DSphere.java410 public void write(JmeExporter e) throws IOException { method in class:Sphere
411 super.write(e);
413 capsule.write(zSamples, "zSamples", 0);
414 capsule.write(radialSamples, "radialSamples", 0);
415 capsule.write(radius, "radius", 0);
416 capsule.write(useEvenSlices, "useEvenSlices", false);
417 capsule.write(textureMode, "textureMode", TextureMode.Original);
418 capsule.write(interior, "interior", false);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DDefineList.java46 public void write(JmeExporter ex) throws IOException{ method in class:DefineList
59 oc.write(keys, "keys", null);
60 oc.write(vals, "vals", null);
63 oc.write(compiled, "compiled", null);
H A DShaderKey.java111 public void write(JmeExporter ex) throws IOException{ method in class:ShaderKey
112 super.write(ex);
114 oc.write(fragName, "fragment_name", null);
115 oc.write(language, "language", null);
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture2D.java206 public void write(JmeExporter e) throws IOException { method in class:Texture2D
207 super.write(e);
209 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
210 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
H A DTexture3D.java208 public void write(JmeExporter e) throws IOException { method in class:Texture3D
209 super.write(e);
211 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
212 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
213 capsule.write(wrapR, "wrapR", WrapMode.EdgeClamp);
H A DTextureCubeMap.java190 public void write(JmeExporter e) throws IOException { method in class:TextureCubeMap
191 super.write(e);
193 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
194 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
195 capsule.write(wrapR, "wrapR", WrapMode.EdgeClamp);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DFogFilter.java154 public void write(JmeExporter ex) throws IOException { method in class:FogFilter
155 super.write(ex);
157 oc.write(fogColor, "fogColor", ColorRGBA.White.clone());
158 oc.write(fogDensity, "fogDensity", 0.7f);
159 oc.write(fogDistance, "fogDistance", 1000);
H A DRadialBlurFilter.java142 public void write(JmeExporter ex) throws IOException { method in class:RadialBlurFilter
143 super.write(ex);
145 oc.write(sampleDist, "sampleDist", 1.0f);
146 oc.write(sampleStrength, "sampleStrength", 2.2f);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCollisionShape.java100 public void write(JmeExporter ex) throws IOException { method in class:CollisionShape
102 capsule.write(scale, "scale", new Vector3f(1, 1, 1));
103 capsule.write(getMargin(), "margin", 0.0f);
H A DCompoundCollisionShape.java128 public void write(JmeExporter ex) throws IOException { method in class:CompoundCollisionShape
129 super.write(ex);
H A DGImpactCollisionShape.java89 public void write(JmeExporter ex) throws IOException { method in class:GImpactCollisionShape
90 super.write(ex);
92 capsule.write(worldScale, "worldScale", new Vector3f(1, 1, 1));
93 capsule.write(numVertices, "numVertices", 0);
94 capsule.write(numTriangles, "numTriangles", 0);
95 capsule.write(vertexStride, "vertexStride", 0);
96 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
98 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
99 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
H A DHeightfieldCollisionShape.java106 public void write(JmeExporter ex) throws IOException { method in class:HeightfieldCollisionShape
107 super.write(ex);
109 capsule.write(heightStickWidth, "heightStickWidth", 0);
110 capsule.write(heightStickLength, "heightStickLength", 0);
111 capsule.write(heightScale, "heightScale", 0);
112 capsule.write(minHeight, "minHeight", 0);
113 capsule.write(maxHeight, "maxHeight", 0);
114 capsule.write(upAxis, "upAxis", 1);
115 capsule.write(heightfieldData, "heightfieldData", new float[0]);
116 capsule.write(flipQuadEdge
[all...]
H A DMeshCollisionShape.java87 public void write(JmeExporter ex) throws IOException { method in class:MeshCollisionShape
88 super.write(ex);
90 capsule.write(numVertices, "numVertices", 0);
91 capsule.write(numTriangles, "numTriangles", 0);
92 capsule.write(vertexStride, "vertexStride", 0);
93 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
95 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
96 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DConeJoint.java99 public void write(JmeExporter ex) throws IOException { method in class:ConeJoint
100 super.write(ex);
102 capsule.write(rotA, "rotA", new Matrix3f());
103 capsule.write(rotB, "rotB", new Matrix3f());
105 capsule.write(angularOnly, "angularOnly", false);
106 capsule.write(swingSpan1, "swingSpan1", 1e30f);
107 capsule.write(swingSpan2, "swingSpan2", 1e30f);
108 capsule.write(twistSpan, "twistSpan", 1e30f);
H A DPhysicsJoint.java120 public void write(JmeExporter ex) throws IOException { method in class:PhysicsJoint
122 capsule.write(nodeA, "nodeA", null);
123 capsule.write(nodeB, "nodeB", null);
124 capsule.write(pivotA, "pivotA", null);
125 capsule.write(pivotB, "pivotB", null);
H A DPoint2PointJoint.java90 public void write(JmeExporter ex) throws IOException { method in class:Point2PointJoint
91 super.write(ex);
93 cap.write(getDamping(), "damping", 1.0f);
94 cap.write(getTau(), "tau", 0.3f);
95 cap.write(getImpulseClamp(), "impulseClamp", 0f);

Completed in 155 milliseconds

1234567891011>>