Lines Matching refs:blenderContext

63 	public ConstraintHelper(String blenderVersion, BlenderContext blenderContext, boolean fixUpAxis) {

73 * @param blenderContext
77 public void loadConstraints(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
80 IpoHelper ipoHelper = blenderContext.getHelper(IpoHelper.class);
84 List<Structure> actions = pActions.fetchData(blenderContext.getInputStream());
87 List<Structure> actionChannels = chanbase.evaluateListBase(blenderContext);
91 List<Structure> constraintChannels = constChannels.evaluateListBase(blenderContext);
96 Ipo ipo = ipoHelper.fromIpoStructure(pIpo.fetchData(blenderContext.getInputStream()).get(0), blenderContext);
109 List<Structure> poseChannels = ((Structure) pPose.fetchData(blenderContext.getInputStream()).get(0).getFieldValue("chanbase")).evaluateListBase(blenderContext);
115 String name = blenderContext.getFileBlock(boneOMA).getStructure(blenderContext).getFieldValue("name").toString();
116 List<Structure> constraints = ((Structure) poseChannel.getFieldValue("constraints")).evaluateListBase(blenderContext);
125 constraintsList.add(this.createConstraint(constraint, boneOMA, ipo, blenderContext));
127 blenderContext.addConstraints(boneOMA, constraintsList);
132 List<Structure> constraints = ((Structure)objectStructure.getFieldValue("constraints")).evaluateListBase(blenderContext);
145 constraintsList.add(this.createConstraint(constraint, objectStructure.getOldMemoryAddress(), ipo, blenderContext));
147 blenderContext.addConstraints(objectStructure.getOldMemoryAddress(), constraintsList);
159 * @param blenderContext
166 BlenderContext blenderContext) throws BlenderFileException {
167 String constraintClassName = this.getConstraintClassName(constraintStructure, blenderContext);
172 blenderContext);
189 protected String getConstraintClassName(Structure constraintStructure, BlenderContext blenderContext) throws BlenderFileException {
192 Structure data = pData.fetchData(blenderContext.getInputStream()).get(0);
200 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {