File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ void BashScript::drawObjectNodeConfig(){
265265// --------------------------------------------------------------
266266void BashScript::removeObjectContent (bool removeFileFromData){
267267 if (filepath != ofToDataPath (" scripts/empty.sh" ,true ) && removeFileFromData){
268- removeFile (filepath);
268+ // removeFile(filepath);
269269 }
270270
271271 std::unique_lock<std::mutex> lck (mutex);
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ void LuaScript::removeObjectContent(bool removeFileFromData){
417417 // /////////////////////////////////////////
418418
419419 if (removeFileFromData){
420- removeFile (filepath);
420+ // removeFile(filepath);
421421 }
422422}
423423
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ void PythonScript::removeObjectContent(bool removeFileFromData){
279279 script = ofxPythonObject::_None ();
280280
281281 if (removeFileFromData && filepath != ofToDataPath (" scripts/empty.py" ,true )){
282- removeFile (filepath);
282+ // removeFile(filepath);
283283 }
284284}
285285
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ void ShaderObject::drawObjectNodeConfig(){
443443void ShaderObject::removeObjectContent (bool removeFileFromData){
444444
445445 if (currentScriptFile.getAbsolutePath () != ofToDataPath (" scripts/empty.frag" ,true ) && currentScriptFile.exists () && removeFileFromData){
446- removeFile (filepath);
446+ // removeFile(filepath);
447447 // ofLog(OF_LOG_NOTICE,"%s",lastVertexShaderPath.c_str());
448448 /* if(lastVertexShaderPath != ofToDataPath("scripts/empty.vert",true)){
449449 removeFile(lastVertexShaderPath);
You can’t perform that action at this time.
0 commit comments