HomeSort by relevance Sort by last modified time
    Searched defs:oc (Results 26 - 50 of 96) sorted by null

12 3 4

  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
TextureKey.java 174 OutputCapsule oc = ex.getCapsule(this); local
175 oc.write(flipY, "flip_y", false);
176 oc.write(generateMips, "generate_mips", false);
177 oc.write(asCube, "as_cubemap", false);
178 oc.write(anisotropy, "anisotropy", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
TimeLine.java 106 OutputCapsule oc = ex.getCapsule(this); local
109 oc.writeSavableArrayList(list, "keyFrames", null);
Cinematic.java 133 OutputCapsule oc = ex.getCapsule(this); local
135 oc.writeSavableArrayList((ArrayList) cinematicEvents, "cinematicEvents", null);
136 oc.writeStringSavableMap(cameras, "cameras", null);
137 oc.write(timeLine, "timeLine", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AnimationTrack.java 163 OutputCapsule oc = ex.getCapsule(this); local
164 oc.write(modelName, "modelName", "");
165 oc.write(animationName, "animationName", "");
RotationTrack.java 114 OutputCapsule oc = ex.getCapsule(this); local
115 oc.write(spatialName, "spatialName", "");
116 oc.write(endRotation, "endRotation", null);
ScaleTrack.java 109 OutputCapsule oc = ex.getCapsule(this); local
110 oc.write(spatialName, "spatialName", "");
111 oc.write(endScale, "endScale", null);
SoundTrack.java 170 OutputCapsule oc = ex.getCapsule(this); local
171 oc.write(path, "path", "");
172 oc.write(stream, "stream", false);
AbstractCinematicEvent.java 254 OutputCapsule oc = ex.getCapsule(this); local
255 oc.write(playState, "playState", PlayState.Stopped);
256 oc.write(speed, "speed", 1);
257 oc.write(initialDuration, "initalDuration", 10);
258 oc.write(loopMode, "loopMode", LoopMode.DontLoop);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
DefaultParticleInfluencer.java 50 OutputCapsule oc = ex.getCapsule(this); local
51 oc.write(startVelocity, "startVelocity", Vector3f.ZERO);
52 oc.write(velocityVariation, "variation", 0.2f);
NewtonianParticleInfluencer.java 128 OutputCapsule oc = ex.getCapsule(this); local
129 oc.write(normalVelocity, "normalVelocity", 0.0f);
130 oc.write(surfaceTangentFactor, "surfaceTangentFactor", 0.0f);
131 oc.write(surfaceTangentRotation, "surfaceTangentRotation", 0.0f);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshVertexShape.java 142 OutputCapsule oc = ex.getCapsule(this); local
143 oc.writeSavableArrayList((ArrayList<List<Vector3f>>) vertices, "vertices", null);
144 oc.writeSavableArrayList((ArrayList<List<Vector3f>>) normals, "normals", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
Light.java 183 OutputCapsule oc = ex.getCapsule(this); local
184 oc.write(color, "color", null);
185 oc.write(enabled, "enabled", true);
186 oc.write(name, "name", null);
SpotLight.java 195 OutputCapsule oc = ex.getCapsule(this); local
196 oc.write(direction, "direction", new Vector3f());
197 oc.write(position, "position", new Vector3f());
198 oc.write(spotInnerAngle, "spotInnerAngle", FastMath.QUARTER_PI / 8);
199 oc.write(spotOuterAngle, "spotOuterAngle", FastMath.QUARTER_PI / 6);
200 oc.write(spotRange, "spotRange", 100);
LightList.java 307 OutputCapsule oc = ex.getCapsule(this); local
308 // oc.write(owner, "owner", null);
314 oc.writeSavableArrayList(lights, "lights", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
LodControl.java 187 OutputCapsule oc = ex.getCapsule(this); local
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/shader/
DefineList.java 47 OutputCapsule oc = ex.getCapsule(this); local
59 oc.write(keys, "keys", null);
60 oc.write(vals, "vals", null);
63 oc.write(compiled, "compiled", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
DistanceLodCalculator.java 117 OutputCapsule oc = ex.getCapsule(this); local
118 oc.write(size, "patchSize", 32);
119 oc.write(lodMultiplier, "lodMultiplier", 32);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimControl.java 349 OutputCapsule oc = ex.getCapsule(this); local
350 oc.write(skeleton, "skeleton", null);
351 oc.writeStringSavableMap(animationMap, "animations", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Technique.java 243 OutputCapsule oc = ex.getCapsule(this); local
244 oc.write(def, "def", null);
246 // oc.write(owner, "owner", null);
247 oc.writeSavableArrayList(worldBindUniforms, "worldBindUniforms", null);
248 oc.write(defines, "defines", null);
249 oc.write(shader, "shader", null);
MatParam.java 290 OutputCapsule oc = ex.getCapsule(this); local
291 oc.write(type, "varType", null);
292 oc.write(name, "name", null);
293 oc.write(ffBinding, "ff_binding", null);
296 oc.write(s, "value_savable", null);
299 oc.write(f.floatValue(), "value_float", 0f);
302 oc.write(i.intValue(), "value_int", 0);
305 oc.write(b.booleanValue(), "value_bool", false);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
CharacterControl.java 189 OutputCapsule oc = ex.getCapsule(this); local
190 oc.write(enabled, "enabled", true);
191 oc.write(applyLocal, "applyLocalPhysics", false);
192 oc.write(useViewDirection, "viewDirectionEnabled", true);
193 oc.write(viewDirection, "viewDirection", new Vector3f(Vector3f.UNIT_Z));
194 oc.write(spatial, "spatial", null);
GhostControl.java 163 OutputCapsule oc = ex.getCapsule(this); local
164 oc.write(enabled, "enabled", true);
165 oc.write(applyLocal, "applyLocalPhysics", false);
166 oc.write(spatial, "spatial", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacter.java 157 OutputCapsule oc = ex.getCapsule(this); local
158 oc.write(c, "c", 0);
159 oc.write(x, "x", 0);
160 oc.write(y, "y", 0);
161 oc.write(width, "width", 0);
162 oc.write(height, "height", 0);
163 oc.write(xOffset, "xOffset", 0);
164 oc.write(yOffset, "yOffset", 0);
165 oc.write(xAdvance, "xAdvance", 0);
177 oc.write(seconds, "seconds", null);
    [all...]
BitmapCharacterSet.java 52 OutputCapsule oc = ex.getCapsule(this); local
53 oc.write(lineHeight, "lineHeight", 0);
54 oc.write(base, "base", 0);
55 oc.write(renderedSize, "renderedSize", 0);
56 oc.write(width, "width", 0);
57 oc.write(height, "height", 0);
58 oc.write(pageSize, "pageSize", 0);
67 writeCharset(oc, style, charset);
69 oc.write(styles, "styles", null);
72 protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws IOException {
    [all...]
BitmapFont.java 156 OutputCapsule oc = ex.getCapsule(this); local
157 oc.write(charSet, "charSet", null);
158 oc.write(pages, "pages", null);

Completed in 225 milliseconds

12 3 4