Skip to content

Commit

Permalink
project update
Browse files Browse the repository at this point in the history
  • Loading branch information
James George committed Jul 9, 2016
1 parent 37ce755 commit ee03bf0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CLOUDS/CLOUDS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -16213,6 +16213,7 @@
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CODE_SIGN_IDENTITY = "Developer ID Application: Serious Computational Cinema LLC (Z658858QS8)";
CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
COPY_PHASE_STRIP = NO;
DEAD_CODE_STRIPPING = YES;
Expand Down Expand Up @@ -16242,7 +16243,7 @@
"$(OF_PATH)/addons/ofxOsc/libs/oscpack/src",
"$(OF_PATH)/addons/ofxOculusDK2/libs/**",
);
MACOSX_DEPLOYMENT_TARGET = 10.8;
MACOSX_DEPLOYMENT_TARGET = 10.9;
OTHER_CPLUSPLUSFLAGS = (
"-D__MACOSX_CORE__",
"-lpthread",
Expand All @@ -16258,6 +16259,7 @@
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CODE_SIGN_IDENTITY = "Developer ID Application: Serious Computational Cinema LLC (Z658858QS8)";
CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
COPY_PHASE_STRIP = YES;
DEAD_CODE_STRIPPING = YES;
Expand Down Expand Up @@ -16288,7 +16290,7 @@
"$(OF_PATH)/addons/ofxOsc/libs/oscpack/src",
"$(OF_PATH)/addons/ofxOculusDK2/libs/**",
);
MACOSX_DEPLOYMENT_TARGET = 10.8;
MACOSX_DEPLOYMENT_TARGET = 10.9;
OTHER_CPLUSPLUSFLAGS = (
"-D__MACOSX_CORE__",
"-lpthread",
Expand Down
2 changes: 1 addition & 1 deletion CloudsLibrary/src/RGBD/CloudsVisualSystemRGBD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ void CloudsVisualSystemRGBD::updateTransition(float percentComplete)
if(transitioning) {
float easedPercent = ofxTween::map(percentComplete, 0, 1, 0, 1, true, ofxEasingCubic(), transitionEase );//ofxEasingSine
cloudsCamera.setTransitionPercent( easedPercent );
if(selectedPortal != nullptr){
if(selectedPortal != NULL){
playerScaleModifier = powf(ofMap(percentComplete,0,.8,1.0,0.0,true),2.0);
}
else{
Expand Down

0 comments on commit ee03bf0

Please sign in to comment.