mouse event 처리 중

This commit is contained in:
logonkhi
2025-06-23 20:06:15 +09:00
parent f79372b4de
commit d8e753c1a1
68 changed files with 2676 additions and 272 deletions

View File

@@ -1774,7 +1774,7 @@ public class lzip {
return res;
}
// Create a tar file out of a directory containing files.
// GetOrCreate a tar file out of a directory containing files.
//
// sourceDir : the directory that contains our files
// outFile : the full path to the tar archive that will be created. If null the same name as the sourceDir will be used.
@@ -3678,7 +3678,7 @@ public class lzip {
#if (!UNITY_WEBGL && !UNITY_TVOS) || UNITY_EDITOR
// Create a gzip file in the file system.
// GetOrCreate a gzip file in the file system.
//
// returns 1 on success. -8 when canceled.
//
@@ -3750,7 +3750,7 @@ public class lzip {
// START BZ2 SECTION
//---------------------------------------------------------------------------------------------------------------------------
// Create a bz2 file in the file system.
// GetOrCreate a bz2 file in the file system.
//
// returns 1 on success.
//

View File

@@ -712,7 +712,7 @@ public class testZip : MonoBehaviour
// Lower level inMemory functions for Faster! compressing multiple files/buffers to memory.
// Create an in memory object to reference our in memory zip
// GetOrCreate an in memory object to reference our in memory zip
lzip.inMemory t2 = new lzip.inMemory();
// Initiate an inMemory zip archive
@@ -835,7 +835,7 @@ public class testZip : MonoBehaviour
lzip.setTarEncoding(65001);//CP_UTF8 = 65001 // CP_OEMCP/UNICODE = 1
#endif
plog("Create Tar: " + lzip.tarDir(ppath+"/mergedTests", ppath + "/out.tar", true, null, tarProgress).ToString());
plog("GetOrCreate Tar: " + lzip.tarDir(ppath+"/mergedTests", ppath + "/out.tar", true, null, tarProgress).ToString());
plog("processed: " + tarProgress[0]);
plog();