Changeset 1849
- Timestamp:
- 11/06/08 23:16:01 (2 months ago)
- Files:
-
- drizzle/DrizzlePrp/src/gui/help.txt (modified) (1 diff)
- drizzle/DrizzlePrp/src/shared/Flt.java (modified) (1 diff)
- drizzle/DrizzlePrp/src/shared/Vertex.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
drizzle/DrizzlePrp/src/gui/help.txt
r1844 r1849 1 1 Welcome to Drizzle! 2 3 4 To convert Myst 5 Ages the simple way: 5 -------------------------------------- 6 1) Go to the Simplicity tab, then the MystV tab. 7 2) Select the folder where you installed Myst 5. (By default, it's "C:\Program Files\Ubisoft\Cyan Worlds\Myst V End Of Ages".) 8 3) Select the folder where you installed PathOfTheShell/CompleteChronicles. (By default it's "C:\Program Files\Ubi Soft\Cyan Worlds\Uru - Ages Beyond Myst" or "C:\Program Files\Ubi Soft\Cyan Worlds\Myst Uru Complete Chronicles".) 9 4) Click the "Start..." button. 10 5) In the PathOfTheShell/CompleteChronicles folder, run SoundDecompress.exe. (SoundDecompress.exe may crash if you haven't run Uru at least once.) 2 11 3 12 drizzle/DrizzlePrp/src/shared/Flt.java
r1842 r1849 103 103 return this.rawdata; 104 104 } 105 public void compile(Bytedeque c) 106 { 107 c.writeInt(rawdata); 108 } 105 109 public void compile(IBytedeque deque) 106 110 { drizzle/DrizzlePrp/src/shared/Vertex.java
r1842 r1849 82 82 z.compile(data); 83 83 } 84 public void compile(Bytedeque data) 85 { 86 x.compile(data); 87 y.compile(data); 88 z.compile(data); 89 } 84 90 public float dot(Vertex v2) 85 91 {
