├── .gitattributes ├── .gitignore ├── unity ├── MidiPlayer │ ├── Assembly-CSharp-vs.csproj │ ├── Assembly-CSharp.csproj │ ├── Assets │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── UnitySynthTest1.unity │ │ │ └── UnitySynthTest1.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── UnityMidiSynth.cs │ │ │ ├── UnityMidiSynth.cs.meta │ │ │ ├── WaveShowsTest.cs │ │ │ ├── WaveShowsTest.cs.meta │ │ │ ├── waveshow.cs │ │ │ └── waveshow.cs.meta │ │ ├── codelib.meta │ │ ├── codelib │ │ │ ├── CSharpSynth.meta │ │ │ ├── CSharpSynth │ │ │ │ ├── Banks.meta │ │ │ │ ├── Banks │ │ │ │ │ ├── Analog.meta │ │ │ │ │ ├── Analog │ │ │ │ │ │ ├── AnalogInstrument.cs │ │ │ │ │ │ └── AnalogInstrument.cs.meta │ │ │ │ │ ├── BankManager.cs │ │ │ │ │ ├── BankManager.cs.meta │ │ │ │ │ ├── Fm.meta │ │ │ │ │ ├── Fm │ │ │ │ │ │ ├── Envelope.cs │ │ │ │ │ │ ├── Envelope.cs.meta │ │ │ │ │ │ ├── FMInstrument.cs │ │ │ │ │ │ ├── FMInstrument.cs.meta │ │ │ │ │ │ ├── IFMComponent.cs │ │ │ │ │ │ └── IFMComponent.cs.meta │ │ │ │ │ ├── Instrument.cs │ │ │ │ │ ├── Instrument.cs.meta │ │ │ │ │ ├── InstrumentBank.cs │ │ │ │ │ ├── InstrumentBank.cs.meta │ │ │ │ │ ├── Sfz.meta │ │ │ │ │ └── Sfz │ │ │ │ │ │ ├── SfzInstrument.cs │ │ │ │ │ │ ├── SfzInstrument.cs.meta │ │ │ │ │ │ ├── SfzRegion.cs │ │ │ │ │ │ └── SfzRegion.cs.meta │ │ │ │ ├── Effects.meta │ │ │ │ ├── Effects │ │ │ │ │ ├── BasicAudioEffect.cs │ │ │ │ │ ├── BasicAudioEffect.cs.meta │ │ │ │ │ ├── Echo.cs │ │ │ │ │ ├── Echo.cs.meta │ │ │ │ │ ├── dBMeter.cs │ │ │ │ │ └── dBMeter.cs.meta │ │ │ │ ├── Midi.meta │ │ │ │ ├── Midi │ │ │ │ │ ├── MidiEvent.cs │ │ │ │ │ ├── MidiEvent.cs.meta │ │ │ │ │ ├── MidiFile.cs │ │ │ │ │ ├── MidiFile.cs.meta │ │ │ │ │ ├── MidiHeader.cs │ │ │ │ │ ├── MidiHeader.cs.meta │ │ │ │ │ ├── MidiHelper.cs │ │ │ │ │ ├── MidiHelper.cs.meta │ │ │ │ │ ├── MidiTrack.cs │ │ │ │ │ └── MidiTrack.cs.meta │ │ │ │ ├── Properties.meta │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ │ ├── Sequencer.meta │ │ │ │ ├── Sequencer │ │ │ │ │ ├── MidiSequencer.cs │ │ │ │ │ ├── MidiSequencer.cs.meta │ │ │ │ │ ├── MidiSequencerEvent.cs │ │ │ │ │ └── MidiSequencerEvent.cs.meta │ │ │ │ ├── Synthesis.meta │ │ │ │ ├── Synthesis │ │ │ │ │ ├── NoteRegistryKey.cs │ │ │ │ │ ├── NoteRegistryKey.cs.meta │ │ │ │ │ ├── StreamSynthesizer.cs │ │ │ │ │ ├── StreamSynthesizer.cs.meta │ │ │ │ │ ├── SynthHelper.cs │ │ │ │ │ ├── SynthHelper.cs.meta │ │ │ │ │ ├── Voice.cs │ │ │ │ │ └── Voice.cs.meta │ │ │ │ ├── Wave.meta │ │ │ │ └── Wave │ │ │ │ │ ├── DSP.meta │ │ │ │ │ ├── DSP │ │ │ │ │ ├── BiQuadLowPass.cs │ │ │ │ │ ├── BiQuadLowPass.cs.meta │ │ │ │ │ ├── SincLowPass.cs │ │ │ │ │ └── SincLowPass.cs.meta │ │ │ │ │ ├── DataChunk.cs │ │ │ │ │ ├── DataChunk.cs.meta │ │ │ │ │ ├── FactChunk.cs │ │ │ │ │ ├── FactChunk.cs.meta │ │ │ │ │ ├── FormatChunk.cs │ │ │ │ │ ├── FormatChunk.cs.meta │ │ │ │ │ ├── IChunk.cs │ │ │ │ │ ├── IChunk.cs.meta │ │ │ │ │ ├── MasterChunk.cs │ │ │ │ │ ├── MasterChunk.cs.meta │ │ │ │ │ ├── Sample.cs │ │ │ │ │ ├── Sample.cs.meta │ │ │ │ │ ├── WaveFile.cs │ │ │ │ │ ├── WaveFile.cs.meta │ │ │ │ │ ├── WaveFileReader.cs │ │ │ │ │ ├── WaveFileReader.cs.meta │ │ │ │ │ ├── WaveFileWriter.cs │ │ │ │ │ ├── WaveFileWriter.cs.meta │ │ │ │ │ ├── WaveHelper.cs │ │ │ │ │ └── WaveHelper.cs.meta │ │ │ ├── fft.cs │ │ │ └── fft.cs.meta │ │ ├── resources.meta │ │ └── resources │ │ │ ├── Analog Bank.meta │ │ │ ├── Analog Bank │ │ │ ├── analog.txt │ │ │ └── analog.txt.meta │ │ │ ├── FM Bank.meta │ │ │ ├── FM Bank │ │ │ ├── Drum.prg.bytes │ │ │ ├── Drum.prg.bytes.meta │ │ │ ├── SuperSquare.prg.bytes │ │ │ ├── SuperSquare.prg.bytes.meta │ │ │ ├── fm.txt │ │ │ └── fm.txt.meta │ │ │ ├── Midis.meta │ │ │ ├── Midis │ │ │ ├── BattleGM.mid.txt │ │ │ ├── BattleGM.mid.txt.meta │ │ │ ├── DDRMAX2_ranking_SB_zb.mid.txt │ │ │ ├── DDRMAX2_ranking_SB_zb.mid.txt.meta │ │ │ ├── DrumSolo_BlocksAway.mid.txt │ │ │ ├── DrumSolo_BlocksAway.mid.txt.meta │ │ │ ├── FF6_Forever_Rachel.mid.txt │ │ │ ├── FF6_Forever_Rachel.mid.txt.meta │ │ │ ├── GROOVE.MID.txt │ │ │ ├── GROOVE.MID.txt.meta │ │ │ ├── ISLAND.MID.txt │ │ │ ├── ISLAND.MID.txt.meta │ │ │ ├── N64ZeldaOcarinaEnding.mid.txt │ │ │ ├── N64ZeldaOcarinaEnding.mid.txt.meta │ │ │ ├── SSBM_HyruleTemple_Alt_FireEmblem.mid.txt │ │ │ ├── SSBM_HyruleTemple_Alt_FireEmblem.mid.txt.meta │ │ │ ├── SuperMario64_-_DireDireDocksRemixXG.mid.txt │ │ │ ├── SuperMario64_-_DireDireDocksRemixXG.mid.txt.meta │ │ │ ├── T_RaidenII_Stage1Theme.mid.txt │ │ │ ├── T_RaidenII_Stage1Theme.mid.txt.meta │ │ │ ├── The-Lylat-Wars_1-2.mid.txt │ │ │ ├── The-Lylat-Wars_1-2.mid.txt.meta │ │ │ ├── WALTZFLR.MID.txt │ │ │ ├── WALTZFLR.MID.txt.meta │ │ │ ├── ZFS_Title_V1_3.mid.txt │ │ │ ├── ZFS_Title_V1_3.mid.txt.meta │ │ │ ├── alad09.mid.txt │ │ │ ├── alad09.mid.txt.meta │ │ │ ├── carnival.mid.txt │ │ │ ├── carnival.mid.txt.meta │ │ │ ├── cbfd_heist.mid.txt │ │ │ ├── cbfd_heist.mid.txt.meta │ │ │ ├── eternia.mid.txt │ │ │ ├── eternia.mid.txt.meta │ │ │ ├── hdl.mid.txt │ │ │ ├── hdl.mid.txt.meta │ │ │ ├── luf1them.mid.txt │ │ │ ├── luf1them.mid.txt.meta │ │ │ ├── mirror_speedeaters2.mid.txt │ │ │ ├── mirror_speedeaters2.mid.txt.meta │ │ │ ├── mtt2_outside.mid.txt │ │ │ ├── mtt2_outside.mid.txt.meta │ │ │ ├── tme.mid.txt │ │ │ ├── tme.mid.txt.meta │ │ │ ├── xmasmedl.mid.txt │ │ │ ├── xmasmedl.mid.txt.meta │ │ │ ├── z5hracermx2.mid.txt │ │ │ └── z5hracermx2.mid.txt.meta │ │ │ ├── midi.list.txt │ │ │ └── midi.list.txt.meta │ ├── MidiPlayer-csharp.sln │ ├── MidiPlayer.sln │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset ├── TestBlock │ ├── Assembly-CSharp-vs.csproj │ ├── Assembly-CSharp.csproj │ ├── Assets │ │ ├── MetroTestCertificate.pfx │ │ ├── MetroTestCertificate.pfx.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── 1.png │ │ │ ├── 1.png.meta │ │ │ ├── 3.jpg │ │ │ ├── 3.jpg.meta │ │ │ ├── j1.jpg │ │ │ ├── j1.jpg.meta │ │ │ ├── j2.jpg │ │ │ ├── j2.jpg.meta │ │ │ ├── j3.jpg │ │ │ ├── j3.jpg.meta │ │ │ ├── j4.jpg │ │ │ ├── j4.jpg.meta │ │ │ ├── ll1.png │ │ │ └── ll1.png.meta │ │ ├── mat.meta │ │ ├── mat │ │ │ ├── New Material.mat │ │ │ ├── New Material.mat.meta │ │ │ ├── New Render Texture.renderTexture │ │ │ ├── New Render Texture.renderTexture.meta │ │ │ ├── Sprites-DF.shader.txt │ │ │ ├── Sprites-DF.shader.txt.meta │ │ │ ├── mat.mat │ │ │ ├── mat.mat.meta │ │ │ ├── mat2.mat │ │ │ ├── mat2.mat.meta │ │ │ ├── mats.shader │ │ │ ├── mats.shader.meta │ │ │ ├── pixel.shader │ │ │ └── pixel.shader.meta │ │ ├── peditor.unity │ │ ├── peditor.unity.meta │ │ ├── streamingassets.meta │ │ ├── streamingassets │ │ │ ├── ll1.png │ │ │ ├── ll1.png.meta │ │ │ ├── ll1_df.png │ │ │ ├── ll1_df.png.meta │ │ │ ├── ll2.png │ │ │ └── ll2.png.meta │ │ ├── test.meta │ │ ├── test │ │ │ ├── CreateBox.cs │ │ │ ├── CreateBox.cs.meta │ │ │ ├── KDTree2.cs │ │ │ ├── KDTree2.cs.meta │ │ │ ├── PixelWorld.cs │ │ │ ├── PixelWorld.cs.meta │ │ │ ├── mattest.unity │ │ │ ├── mattest.unity.meta │ │ │ ├── pixeltest.cs │ │ │ ├── pixeltest.cs.meta │ │ │ ├── pixeltest.unity │ │ │ ├── pixeltest.unity.meta │ │ │ ├── tcam.cs │ │ │ └── tcam.cs.meta │ │ ├── zj.cs │ │ └── zj.cs.meta │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset │ ├── TestBlock-csharp.sln │ ├── TestBlock-csharp.v12.suo │ └── TestBlock.sln ├── basemath │ ├── Assembly-CSharp-vs.csproj │ ├── Assembly-CSharp.csproj │ ├── Assets │ │ ├── 0.menu.unity │ │ ├── 0.menu.unity.meta │ │ ├── 1.pi.unity │ │ ├── 1.pi.unity.meta │ │ ├── 2.dot.unity │ │ ├── 2.dot.unity.meta │ │ ├── 3.dotcross.unity │ │ ├── 3.dotcross.unity.meta │ │ ├── 4.lerp.unity │ │ ├── 4.lerp.unity.meta │ │ ├── menu.cs │ │ ├── menu.cs.meta │ │ ├── resources.meta │ │ ├── resources │ │ │ ├── QuadCang.prefab │ │ │ ├── QuadCang.prefab.meta │ │ │ ├── QuadHong.prefab │ │ │ ├── QuadHong.prefab.meta │ │ │ ├── matcang.mat │ │ │ ├── matcang.mat.meta │ │ │ ├── mathong.mat │ │ │ ├── mathong.mat.meta │ │ │ ├── pic.meta │ │ │ └── pic │ │ │ │ ├── cang.jpg │ │ │ │ ├── cang.jpg.meta │ │ │ │ ├── hong.jpg │ │ │ │ └── hong.jpg.meta │ │ ├── test_dot.cs │ │ ├── test_dot.cs.meta │ │ ├── test_dotcross.cs │ │ ├── test_dotcross.cs.meta │ │ ├── test_lerp.cs │ │ ├── test_lerp.cs.meta │ │ ├── test_pi.cs │ │ └── test_pi.cs.meta │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset │ ├── basemath-csharp.sln │ └── basemath.sln ├── focus │ ├── Assets │ │ ├── 1.unity │ │ ├── 1.unity.meta │ │ ├── back.jpg │ │ ├── back.jpg.meta │ │ ├── fillfull.cs │ │ ├── fillfull.cs.meta │ │ ├── mat_back.mat │ │ ├── mat_back.mat.meta │ │ ├── mat_over.mat │ │ ├── mat_over.mat.meta │ │ ├── moveuv.cs │ │ ├── moveuv.cs.meta │ │ ├── over 1.png │ │ ├── over 1.png.meta │ │ ├── over.png │ │ └── over.png.meta │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset ├── letusbead │ ├── Assets │ │ ├── 1.unity │ │ ├── 1.unity.meta │ │ ├── code.meta │ │ ├── code │ │ │ ├── GetURL.cs │ │ │ ├── GetURL.cs.meta │ │ │ ├── ImageFlash.cs │ │ │ ├── ImageFlash.cs.meta │ │ │ ├── com_ColorPick.cs │ │ │ ├── com_ColorPick.cs.meta │ │ │ ├── com_pixelEdit.cs │ │ │ ├── com_pixelEdit.cs.meta │ │ │ ├── com_rotate.cs │ │ │ ├── com_rotate.cs.meta │ │ │ ├── com_view.cs │ │ │ ├── com_view.cs.meta │ │ │ ├── edit.cs │ │ │ ├── edit.cs.meta │ │ │ ├── loadbtn.cs │ │ │ ├── loadbtn.cs.meta │ │ │ ├── openbtn.cs │ │ │ ├── openbtn.cs.meta │ │ │ ├── savebtn.cs │ │ │ └── savebtn.cs.meta │ │ ├── codelib.meta │ │ ├── codelib │ │ │ ├── kdtree2.meta │ │ │ ├── kdtree2 │ │ │ │ ├── KDTree2.cs │ │ │ │ └── KDTree2.cs.meta │ │ │ ├── lzma.meta │ │ │ └── lzma │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ ├── CRC.cs │ │ │ │ └── CRC.cs.meta │ │ │ │ ├── Compress.meta │ │ │ │ ├── Compress │ │ │ │ ├── LZ.meta │ │ │ │ ├── LZ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ ├── IMatchFinder.cs.meta │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ ├── LzBinTree.cs.meta │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ ├── LzInWindow.cs.meta │ │ │ │ │ ├── LzOutWindow.cs │ │ │ │ │ └── LzOutWindow.cs.meta │ │ │ │ ├── LZMA.meta │ │ │ │ ├── LZMA │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ ├── LzmaBase.cs.meta │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ ├── LzmaDecoder.cs.meta │ │ │ │ │ ├── LzmaEncoder.cs │ │ │ │ │ └── LzmaEncoder.cs.meta │ │ │ │ ├── RangeCoder.meta │ │ │ │ └── RangeCoder │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ ├── RangeCoder.cs.meta │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ ├── RangeCoderBit.cs.meta │ │ │ │ │ ├── RangeCoderBitTree.cs │ │ │ │ │ └── RangeCoderBitTree.cs.meta │ │ │ │ ├── ICoder.cs │ │ │ │ ├── ICoder.cs.meta │ │ │ │ ├── LZMAHelper.cs │ │ │ │ └── LZMAHelper.cs.meta │ │ ├── resources.meta │ │ └── resources │ │ │ ├── mat.meta │ │ │ ├── mat │ │ │ ├── Sprites-DF.shader.txt │ │ │ ├── Sprites-DF.shader.txt.meta │ │ │ ├── mat.mat │ │ │ ├── mat.mat.meta │ │ │ ├── mats.shader │ │ │ ├── mats.shader.meta │ │ │ ├── pixel.shader │ │ │ ├── pixel.shader.meta │ │ │ ├── pixel_sharp.shader │ │ │ ├── pixel_sharp.shader.meta │ │ │ ├── pixel_sharp_normal.shader │ │ │ ├── pixel_sharp_normal.shader.meta │ │ │ ├── show_alpha.shader │ │ │ ├── show_alpha.shader.meta │ │ │ ├── show_normal.shader │ │ │ └── show_normal.shader.meta │ │ │ ├── tex.meta │ │ │ └── tex │ │ │ ├── rect.png │ │ │ ├── rect.png.meta │ │ │ ├── tile 1.png │ │ │ ├── tile 1.png.meta │ │ │ ├── tile.png │ │ │ ├── tile.png.meta │ │ │ ├── tri.png │ │ │ ├── tri.png.meta │ │ │ ├── white.png │ │ │ ├── white.png.meta │ │ │ ├── x.png │ │ │ └── x.png.meta │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset │ └── letusbead-csharp.v12.suo ├── oggP │ ├── Assembly-CSharp-vs.csproj │ ├── Assembly-CSharp.csproj │ ├── Assets │ │ ├── 1.unity │ │ ├── 1.unity.meta │ │ ├── CSVOggPlayer.cs │ │ ├── CSVOggPlayer.cs.meta │ │ ├── CsVorbis.meta │ │ ├── CsVorbis │ │ │ ├── AllocChain.cs │ │ │ ├── AllocChain.cs.meta │ │ │ ├── Block.cs │ │ │ ├── Block.cs.meta │ │ │ ├── Buffer.cs │ │ │ ├── Buffer.cs.meta │ │ │ ├── CodeBook.cs │ │ │ ├── CodeBook.cs.meta │ │ │ ├── Comment.cs │ │ │ ├── Comment.cs.meta │ │ │ ├── Drft.cs │ │ │ ├── Drft.cs.meta │ │ │ ├── DspState.cs │ │ │ ├── DspState.cs.meta │ │ │ ├── EncodeAuxNearestMatch.cs │ │ │ ├── EncodeAuxNearestMatch.cs.meta │ │ │ ├── EncodeAuxThreshMatch.cs │ │ │ ├── EncodeAuxThreshMatch.cs.meta │ │ │ ├── Floor0.cs │ │ │ ├── Floor0.cs.meta │ │ │ ├── Floor1.cs │ │ │ ├── Floor1.cs.meta │ │ │ ├── FuncFloor.cs │ │ │ ├── FuncFloor.cs.meta │ │ │ ├── FuncMapping.cs │ │ │ ├── FuncMapping.cs.meta │ │ │ ├── FuncResidue.cs │ │ │ ├── FuncResidue.cs.meta │ │ │ ├── FuncTime.cs │ │ │ ├── FuncTime.cs.meta │ │ │ ├── Info.cs │ │ │ ├── Info.cs.meta │ │ │ ├── InfoMode.cs │ │ │ ├── InfoMode.cs.meta │ │ │ ├── Lookup.cs │ │ │ ├── Lookup.cs.meta │ │ │ ├── Lpc.cs │ │ │ ├── Lpc.cs.meta │ │ │ ├── Lsp.cs │ │ │ ├── Lsp.cs.meta │ │ │ ├── Mapping0.cs │ │ │ ├── Mapping0.cs.meta │ │ │ ├── Mdct.cs │ │ │ ├── Mdct.cs.meta │ │ │ ├── OggDecoder.cs │ │ │ ├── OggDecoder.cs.meta │ │ │ ├── Packet.cs │ │ │ ├── Packet.cs.meta │ │ │ ├── Page.cs │ │ │ ├── Page.cs.meta │ │ │ ├── PsyInfo.cs │ │ │ ├── PsyInfo.cs.meta │ │ │ ├── PsyLook.cs │ │ │ ├── PsyLook.cs.meta │ │ │ ├── Residue0.cs │ │ │ ├── Residue0.cs.meta │ │ │ ├── Residue1.cs │ │ │ ├── Residue1.cs.meta │ │ │ ├── Residue2.cs │ │ │ ├── Residue2.cs.meta │ │ │ ├── StaticCodeBook.cs │ │ │ ├── StaticCodeBook.cs.meta │ │ │ ├── StreamState.cs │ │ │ ├── StreamState.cs.meta │ │ │ ├── SyncState.cs │ │ │ ├── SyncState.cs.meta │ │ │ ├── Time0.cs │ │ │ ├── Time0.cs.meta │ │ │ ├── VorbisFile.cs │ │ │ ├── VorbisFile.cs.meta │ │ │ ├── csorbisException.cs │ │ │ └── csorbisException.cs.meta │ │ ├── DSPPlayer.cs │ │ ├── DSPPlayer.cs.meta │ │ ├── NVOggPlayer.cs │ │ ├── NVOggPlayer.cs.meta │ │ ├── NVorbis.meta │ │ ├── NVorbis │ │ │ ├── BufferedReadStream.cs │ │ │ ├── BufferedReadStream.cs.meta │ │ │ ├── DataPacket.cs │ │ │ ├── DataPacket.cs.meta │ │ │ ├── Huffman.cs │ │ │ ├── Huffman.cs.meta │ │ │ ├── IContainerReader.cs │ │ │ ├── IContainerReader.cs.meta │ │ │ ├── IPacketProvider.cs │ │ │ ├── IPacketProvider.cs.meta │ │ │ ├── IVorbisStreamStatus.cs │ │ │ ├── IVorbisStreamStatus.cs.meta │ │ │ ├── Mdct.cs │ │ │ ├── Mdct.cs.meta │ │ │ ├── NewStreamEventArgs.cs │ │ │ ├── NewStreamEventArgs.cs.meta │ │ │ ├── Ogg.meta │ │ │ ├── Ogg │ │ │ │ ├── OggContainerReader.cs │ │ │ │ ├── OggContainerReader.cs.meta │ │ │ │ ├── OggCrc.cs │ │ │ │ ├── OggCrc.cs.meta │ │ │ │ ├── OggPacket.cs │ │ │ │ ├── OggPacket.cs.meta │ │ │ │ ├── OggPacketReader.cs │ │ │ │ ├── OggPacketReader.cs.meta │ │ │ │ ├── OggPageFlags.cs │ │ │ │ └── OggPageFlags.cs.meta │ │ │ ├── ParameterChangeEventArgs.cs │ │ │ ├── ParameterChangeEventArgs.cs.meta │ │ │ ├── RingBuffer.cs │ │ │ ├── RingBuffer.cs.meta │ │ │ ├── StreamReadBuffer.cs │ │ │ ├── StreamReadBuffer.cs.meta │ │ │ ├── Utils.cs │ │ │ ├── Utils.cs.meta │ │ │ ├── VorbisCodebook.cs │ │ │ ├── VorbisCodebook.cs.meta │ │ │ ├── VorbisFloor.cs │ │ │ ├── VorbisFloor.cs.meta │ │ │ ├── VorbisMapping.cs │ │ │ ├── VorbisMapping.cs.meta │ │ │ ├── VorbisMode.cs │ │ │ ├── VorbisMode.cs.meta │ │ │ ├── VorbisReader.cs │ │ │ ├── VorbisReader.cs.meta │ │ │ ├── VorbisResidue.cs │ │ │ ├── VorbisResidue.cs.meta │ │ │ ├── VorbisStreamDecoder.cs │ │ │ ├── VorbisStreamDecoder.cs.meta │ │ │ ├── VorbisTime.cs │ │ │ └── VorbisTime.cs.meta │ │ ├── New Font.fontsettings │ │ ├── New Font.fontsettings.meta │ │ ├── resources.meta │ │ ├── resources │ │ │ ├── 1.ogg │ │ │ ├── 1.ogg.bytes │ │ │ ├── 1.ogg.bytes.meta │ │ │ ├── 1.ogg.meta │ │ │ ├── 2.ogg │ │ │ ├── 2.ogg.bytes │ │ │ ├── 2.ogg.bytes.meta │ │ │ ├── 2.ogg.meta │ │ │ ├── 3.ogg │ │ │ ├── 3.ogg.bytes │ │ │ ├── 3.ogg.bytes.meta │ │ │ └── 3.ogg.meta │ │ ├── test.cs │ │ └── test.cs.meta │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshLayers.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ └── TimeManager.asset │ ├── oggP-csharp.sln │ └── oggP.sln ├── oggPlayer │ └── CsVorbis │ │ ├── AllocChain.cs │ │ ├── Block.cs │ │ ├── Buffer.cs │ │ ├── CodeBook.cs │ │ ├── Comment.cs │ │ ├── Drft.cs │ │ ├── DspState.cs │ │ ├── EncodeAuxNearestMatch.cs │ │ ├── EncodeAuxThreshMatch.cs │ │ ├── Floor0.cs │ │ ├── Floor1.cs │ │ ├── FuncFloor.cs │ │ ├── FuncMapping.cs │ │ ├── FuncResidue.cs │ │ ├── FuncTime.cs │ │ ├── Info.cs │ │ ├── InfoMode.cs │ │ ├── Lookup.cs │ │ ├── Lpc.cs │ │ ├── Lsp.cs │ │ ├── Mapping0.cs │ │ ├── Mdct.cs │ │ ├── OggDecoder.cs │ │ ├── Packet.cs │ │ ├── Page.cs │ │ ├── PsyInfo.cs │ │ ├── PsyLook.cs │ │ ├── Residue0.cs │ │ ├── Residue1.cs │ │ ├── Residue2.cs │ │ ├── StaticCodeBook.cs │ │ ├── StreamState.cs │ │ ├── SyncState.cs │ │ ├── Time0.cs │ │ ├── VorbisFile.cs │ │ └── csorbisException.cs └── shader_btw │ ├── Assets │ ├── mat.meta │ ├── mat │ │ ├── mat_blue.mat │ │ ├── mat_blue.mat.meta │ │ ├── mat_flowlight.mat │ │ ├── mat_flowlight.mat.meta │ │ ├── mat_flowlight3d.mat │ │ ├── mat_flowlight3d.mat.meta │ │ ├── mat_flowlightwithmask.mat │ │ ├── mat_flowlightwithmask.mat.meta │ │ ├── shader_default.shader │ │ ├── shader_default.shader.meta │ │ ├── shader_flowlight3d.shader │ │ ├── shader_flowlight3d.shader.meta │ │ ├── shader_flowlight_step01.shader │ │ ├── shader_flowlight_step01.shader.meta │ │ ├── shader_flowlight_step02.shader │ │ ├── shader_flowlight_step02.shader.meta │ │ ├── shader_flowlight_step03.shader │ │ ├── shader_flowlight_step03.shader.meta │ │ ├── shader_flowlight_step04.shader │ │ ├── shader_flowlight_step04.shader.meta │ │ ├── shader_flowlight_step05.shader │ │ └── shader_flowlight_step05.shader.meta │ ├── resources.meta │ ├── resources │ │ ├── texture.meta │ │ └── texture │ │ │ ├── flow.png │ │ │ ├── flow.png.meta │ │ │ ├── liuguang_ji.png │ │ │ ├── liuguang_ji.png.meta │ │ │ ├── logo01.jpg │ │ │ ├── logo01.jpg.meta │ │ │ ├── logo01_alpha.png │ │ │ ├── logo01_alpha.png.meta │ │ │ ├── logo01_mask.png │ │ │ └── logo01_mask.png.meta │ ├── shader_3d.unity │ ├── shader_3d.unity.meta │ ├── shader_single.cs │ ├── shader_single.cs.meta │ ├── shader_single.unity │ └── shader_single.unity.meta │ └── ProjectSettings │ ├── AudioManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshLayers.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── QualitySettings.asset │ ├── TagManager.asset │ └── TimeManager.asset └── win ├── havefun ├── bin │ └── Debug │ │ ├── havefun.exe.config │ │ ├── havefun.pdb │ │ ├── havefun.vshost.exe │ │ ├── havefun.vshost.exe.config │ │ └── 地球上最小的3D引擎.exe ├── havefun.sln ├── havefun.v12.suo └── havefun0 │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── app.config │ ├── bin │ └── Debug │ │ ├── havefun.exe │ │ ├── havefun.exe.config │ │ ├── havefun.pdb │ │ ├── havefun.vshost.exe │ │ ├── havefun.vshost.exe.config │ │ └── havefun.vshost.exe.manifest │ └── havefun0.csproj └── havefun1 ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── bin └── Debug │ ├── havefun1.exe │ ├── havefun1.pdb │ ├── havefun1.vshost.exe │ └── havefun1.vshost.exe.manifest └── havefun1.csproj /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161b3cad16d1a0a4b9003b59aabcd746 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scenes/UnitySynthTest1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/Scenes/UnitySynthTest1.unity -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scenes/UnitySynthTest1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f67a8a15dacf674ba50c569c08d11ec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21978c404926edd4387854e862afd043 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scripts/UnityMidiSynth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/Scripts/UnityMidiSynth.cs -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scripts/UnityMidiSynth.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b10c3cae24b02934a9e246b726b17e3e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scripts/WaveShowsTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bd165f69ca95d4459ea89e83c239c86 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/Scripts/waveshow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea4db38822729e446bca2e158380dd42 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 488124306d61d2e4abbfa3eef846434a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b0cd3c37db61704cbb3598f49743366 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7459a99219298645ba9cf0f38e1507b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Analog.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4db982b3d61ea4489ab50043a361365 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Analog/AnalogInstrument.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c48a220fa8369f44ba46bdc6a221d6eb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/BankManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f251364eaa6cc154788586a28f9fbcdb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Fm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87a190abc1a2ed54b9ddcf83145b5a7a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Fm/Envelope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77881eb3e01d1e1408ae932ef38eecc4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Fm/FMInstrument.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748b6ea241a52054d8dda44f5cab5e35 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Fm/IFMComponent.cs: -------------------------------------------------------------------------------- 1 | namespace CSharpSynth.Banks.Fm 2 | { 3 | public interface IFMComponent 4 | { 5 | double doProcess(double value); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Fm/IFMComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a93729719214f354c9657c722b271ea3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Instrument.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fce409b4edfba344883ca31d9a8efeca 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/InstrumentBank.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7034540823095e42a0bb76a35ede67d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Sfz.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f3ceed8c93b1d498a354325884e31f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Sfz/SfzInstrument.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 010ff015ab3c138449b8aaa2880ebfc6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Banks/Sfz/SfzRegion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41edaf3f57fc46842a5e9b137aa51a7d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 356a967c8574d004bb415b7dc99b4c37 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Effects/BasicAudioEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb579cad3b5e745919478fe93b4d31 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Effects/Echo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d94847b990ee7e4fb975f2d68e6f5c6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Effects/dBMeter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c543eee5b440435458bee8dae28971eb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2673145c32f6a049945f3693d05bbb1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fd2c77d9e3118b43af487ceea251a5e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0625aa466345044d87bee9d0fb38d8c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiHeader.cs: -------------------------------------------------------------------------------- 1 | namespace CSharpSynth.Midi 2 | { 3 | public class MidiHeader 4 | { 5 | //--Variables 6 | public int DeltaTiming; 7 | public MidiHelper.MidiFormat MidiFormat; 8 | public MidiHelper.MidiTimeFormat TimeFormat; 9 | //--Public Methods 10 | public MidiHeader() 11 | { 12 | 13 | } 14 | public void setMidiFormat(int format) 15 | { 16 | if (format == 0) 17 | MidiFormat = MidiHelper.MidiFormat.SingleTrack; 18 | else if (format == 1) 19 | MidiFormat = MidiHelper.MidiFormat.MultiTrack; 20 | else if (format == 2) 21 | MidiFormat = MidiHelper.MidiFormat.MultiSong; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiHeader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b985be89cb1fb54ca9492f9525a32fd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f4d09cb82049a146ae0e0f9e39fe99b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Midi/MidiTrack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56c5d5bdeafaa134aba1cb6300c76ebf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f073345b13b7dae4394dc84e13cafec2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Properties/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be7e3c6d9de9d34da93844e3fb0cc85 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Sequencer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 234f20bf17bac894ebb3c9b21151fadc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Sequencer/MidiSequencer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c4144314420f24da4f746f864d3cf3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Sequencer/MidiSequencerEvent.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using CSharpSynth.Midi; 3 | 4 | namespace CSharpSynth.Sequencer 5 | { 6 | public class MidiSequencerEvent 7 | { 8 | //--Variables 9 | public List Events; //List of Events 10 | //--Public Methods 11 | public MidiSequencerEvent() 12 | { 13 | Events = new List(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Sequencer/MidiSequencerEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d53f1da377aae049a3c2d7d45245fbd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Synthesis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67defd318eb32e34985ae56c0aa82be0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Synthesis/NoteRegistryKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afe53742a829d1746804a0cb5a1f6b85 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Synthesis/StreamSynthesizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a60d8a83bae985849bf9c0a4843b4883 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Synthesis/SynthHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c20c2695b184547478f620bac01d5f9f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Synthesis/Voice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4001c7f50989ad84e9ef4b20b0e6ea36 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354b57933399e9c45916ee76420410b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe34eb4aca9f2e247bf865c29af17df5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/DSP/BiQuadLowPass.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 417ba6d559316844eac581c27592aa2b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/DSP/SincLowPass.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 129fe511817e0aa479653f5c26290a85 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/DataChunk.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSharpSynth.Wave 4 | { 5 | public class DataChunk : IChunk 6 | { 7 | //--Variables 8 | public char[] chkID = new char[4]; 9 | public int chksize = 0; 10 | public byte[] sampled_data; 11 | public byte pad = 0; 12 | //--Public Methods 13 | public System.IO.Stream GetDataStream() 14 | { 15 | return new System.IO.MemoryStream(sampled_data); 16 | } 17 | public WaveHelper.WaveChunkType GetChunkType() 18 | { 19 | return WaveHelper.WaveChunkType.Data; 20 | } 21 | public String GetChunkId() 22 | { 23 | return new String(chkID); 24 | } 25 | public int GetChunkSize() 26 | { 27 | return chksize; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/DataChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea0b9d61059bac438b4a25e4c369fa6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/FactChunk.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSharpSynth.Wave 4 | { 5 | public class FactChunk : IChunk 6 | { 7 | public char[] chkID = new char[4]; 8 | public int chksize = 0; 9 | public int dwSampleLength = 0; 10 | public WaveHelper.WaveChunkType GetChunkType() 11 | { 12 | return WaveHelper.WaveChunkType.Fact; 13 | } 14 | public String GetChunkId() 15 | { 16 | return new String(chkID); 17 | } 18 | public int GetChunkSize() 19 | { 20 | return chksize; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/FactChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 818e129b52dd0624da3efa4b9c3164f0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/FormatChunk.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSharpSynth.Wave 4 | { 5 | public class FormatChunk : IChunk 6 | { 7 | public char[] chkID = new char[4]; 8 | public Int32 chksize = 0; 9 | public Int16 wFormatTag = 0; 10 | public Int16 nChannels = 0; 11 | public Int32 nSamplesPerSec = 0; 12 | public Int32 nAvgBytesPerSec = 0; 13 | public Int16 nBlockAlign = 0; 14 | public Int16 wBitsPerSample = 0; 15 | public Int16 cbSize = 0; 16 | public Int16 wValidBitsPerSample = 0; 17 | public Int32 dwChannelMask = 0; 18 | public char[] SubFormat = new char[16]; 19 | public WaveHelper.WaveChunkType GetChunkType() 20 | { 21 | return WaveHelper.WaveChunkType.Format; 22 | } 23 | public String GetChunkId() 24 | { 25 | return new String(chkID); 26 | } 27 | public int GetChunkSize() 28 | { 29 | return chksize; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/FormatChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26669c549d1dec34f8977f8497619ac3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/IChunk.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSharpSynth.Wave 4 | { 5 | public interface IChunk 6 | { 7 | WaveHelper.WaveChunkType GetChunkType(); 8 | String GetChunkId(); 9 | int GetChunkSize(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/IChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6196df5b73948e0428ddd0901f9367b0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/MasterChunk.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSharpSynth.Wave 4 | { 5 | public class MasterChunk : IChunk 6 | { 7 | public char[] chkID = new char[4]; 8 | public int chksize = 0; 9 | public char[] WAVEID = new char[4]; 10 | public int WAVEchunks = 0; 11 | public WaveHelper.WaveChunkType GetChunkType() 12 | { 13 | return WaveHelper.WaveChunkType.Master; 14 | } 15 | public String GetChunkId() 16 | { 17 | return new String(chkID); 18 | } 19 | public int GetChunkSize() 20 | { 21 | return chksize; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/MasterChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98ae37a98de250d4dba0ce5c9e5c4ec8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/Sample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dc5f43a33a227d46b2fc81777387f8d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/WaveFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b28f606dd35db9c4384a8b06468512ed 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/WaveFileReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93251f564d113d54c8da321bc91ab71b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/WaveFileWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79ef3421d00c45d43af80ffaeef45a02 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/CSharpSynth/Wave/WaveHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4cebb6fbdfda614d84e59aae396de2e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/codelib/fft.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8a12e566c8b3ce40986692e072d1eec 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebd2f56ca7645de4e959390a9565d5fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Analog Bank.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6444a71cac41503498341725f3c175ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Analog Bank/analog.txt: -------------------------------------------------------------------------------- 1 | [BankFile] 2 | Square/analog/0/127/i/ 3 | WhiteNoise/analog/0/127/d/ -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Analog Bank/analog.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38f2e2bae1cf974499926d9a4ea27fed 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6db341dffd334d34aa327b72a9ac8977 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/Drum.prg.bytes: -------------------------------------------------------------------------------- 1 | [FM INSTRUMENT] 2 | WhiteNoise|sine||| 3 | 0|0.0|1.0| 4 | NONE|.25|1.0| -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/Drum.prg.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8d87f6680fc914eb48910553cde502 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/SuperSquare.prg.bytes: -------------------------------------------------------------------------------- 1 | [FM INSTRUMENT] 2 | square|sine|freq/2|amp| 3 | 1|0.0|2.0| 4 | FadeOut|.25|2.0| -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/SuperSquare.prg.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0f1e540306c87149b7fa1ebd1e1b2a2 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/fm.txt: -------------------------------------------------------------------------------- 1 | [BankFile] 2 | SuperSquare/fm/0/127/i/ 3 | Drum/fm/0/127/d/ -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/FM Bank/fm.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e4bca1aa13538a4b8a65de0514a4463 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98070e45fc0f84a45ba12dbaf5c40e8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/BattleGM.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/BattleGM.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/BattleGM.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4d4ac79b5a7cf94bb3a9d52a1f253c8 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/DDRMAX2_ranking_SB_zb.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/DDRMAX2_ranking_SB_zb.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/DDRMAX2_ranking_SB_zb.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5707327ac05fbf148ba8b2e785f8901e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/DrumSolo_BlocksAway.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/DrumSolo_BlocksAway.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/DrumSolo_BlocksAway.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0e5989c94cc6847b828cac7ffcc317 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/FF6_Forever_Rachel.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/FF6_Forever_Rachel.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/FF6_Forever_Rachel.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f98200b2f26a89744b3543f573e4d70e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/GROOVE.MID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/GROOVE.MID.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/GROOVE.MID.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ab85fe13994d224abc3f1e0cd05f314 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/ISLAND.MID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/ISLAND.MID.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/ISLAND.MID.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e6efb643dcc70f45b10dbe5c76a9729 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/N64ZeldaOcarinaEnding.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/N64ZeldaOcarinaEnding.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/N64ZeldaOcarinaEnding.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e66de6f9f0d874b9f2a531fd0e1994 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/SSBM_HyruleTemple_Alt_FireEmblem.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/SSBM_HyruleTemple_Alt_FireEmblem.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/SSBM_HyruleTemple_Alt_FireEmblem.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b00b34293eddf0f46ab4dd99ef8ba41c 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/SuperMario64_-_DireDireDocksRemixXG.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/SuperMario64_-_DireDireDocksRemixXG.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/SuperMario64_-_DireDireDocksRemixXG.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd610276fac7f04b8747a56319b1858 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/T_RaidenII_Stage1Theme.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/T_RaidenII_Stage1Theme.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/T_RaidenII_Stage1Theme.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 849548dc8c1e74c4cad88f06f2ad6df5 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/The-Lylat-Wars_1-2.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/The-Lylat-Wars_1-2.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/The-Lylat-Wars_1-2.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e8ddc7131c1434da7c8e7cf93ba2dc 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/WALTZFLR.MID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/WALTZFLR.MID.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/WALTZFLR.MID.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb3570fb46024d44290a0017a3d82d4d 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/ZFS_Title_V1_3.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/ZFS_Title_V1_3.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/ZFS_Title_V1_3.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22ac4dc722a085a41a93893a18233d6b 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/alad09.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/alad09.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/alad09.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e007c58ebe26dc4aaf90aab86bd0bfc 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/carnival.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/carnival.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/carnival.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 919635208cdaeaa46bcec1b7c884c085 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/cbfd_heist.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/cbfd_heist.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/cbfd_heist.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0df3412e690c9c349a54f1830a5fcd27 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/eternia.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/eternia.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/eternia.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc2503ddaef05348a93ce75cdeab852 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/hdl.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/hdl.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/hdl.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25c64f378e245534b90937f10666e156 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/luf1them.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/luf1them.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/luf1them.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 086e39383f4bcb442881e6a2c827b2f0 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/mirror_speedeaters2.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/mirror_speedeaters2.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/mirror_speedeaters2.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0639e1f2ec16ec4297e594528d6871d 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/mtt2_outside.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/mtt2_outside.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/mtt2_outside.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 313a3658ac8514b47a46cd7d4744e443 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/tme.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/tme.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/tme.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15c2b70c29b75f1488b098524b6563c9 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/xmasmedl.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/xmasmedl.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/xmasmedl.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da805c33621849540ab733f11727096a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/z5hracermx2.mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/Assets/resources/Midis/z5hracermx2.mid.txt -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/Midis/z5hracermx2.mid.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced27fe69a4fc7546867fd984e84c669 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/midi.list.txt: -------------------------------------------------------------------------------- 1 | Midis/alad09.mid 2 | Midis/BattleGM.mid 3 | Midis/carnival.mid 4 | Midis/cbfd_heist.mid 5 | Midis/DDRMAX2_ranking_SB_zb.mid 6 | Midis/DrumSolo_BlocksAway.mid 7 | Midis/eternia.mid 8 | Midis/FF6_Forever_Rachel.mid 9 | Midis/GROOVE.MID 10 | Midis/hdl.mid 11 | Midis/ISLAND.MID 12 | Midis/luf1them.mid 13 | Midis/mirror_speedeaters2.mid 14 | Midis/mtt2_outside.mid 15 | Midis/N64ZeldaOcarinaEnding.mid 16 | Midis/SSBM_HyruleTemple_Alt_FireEmblem.mid 17 | Midis/SuperMario64_-_DireDireDocksRemixXG.mid 18 | Midis/The-Lylat-Wars_1-2.mid 19 | Midis/tme.mid 20 | Midis/T_RaidenII_Stage1Theme.mid 21 | Midis/WALTZFLR.MID 22 | Midis/xmasmedl.mid 23 | Midis/z5hracermx2.mid 24 | Midis/ZFS_Title_V1_3.mid 25 | -------------------------------------------------------------------------------- /unity/MidiPlayer/Assets/resources/midi.list.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c822a0127af4d9c4887e60647693262a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/MidiPlayer/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/MidiPlayer/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/Assets/MetroTestCertificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/MetroTestCertificate.pfx -------------------------------------------------------------------------------- /unity/TestBlock/Assets/MetroTestCertificate.pfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c9cbc1e89711ad418c262e20dcd8de0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 060aeda34420b3e46ab2933b81002aa4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/1.png -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71d242c576b809348a7758caaf969989 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 1 20 | grayScaleToAlpha: 1 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: 1 24 | maxTextureSize: 512 25 | textureSettings: 26 | filterMode: 0 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/3.jpg -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/3.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79c3967ce54db9943a41db1baaf30ae6 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 1 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: -1 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/j1.jpg -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j1.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 928323314b7434b41b1208346c884e17 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 0 13 | mipMapFadeDistanceEnd: 2 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 1 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -3 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 0 27 | aniso: 0 28 | mipBias: -1 29 | wrapMode: 0 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/j2.jpg -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j2.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 542f9b62c5fe68c4cbe4d500adf69952 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -3 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 0 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/j3.jpg -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j3.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a08a57af959ef04aa5c5ac6ec321032 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 0 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/j4.jpg -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/j4.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd551b5847e89d44cbc972a8bd8ccfb7 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 0 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/ll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/Resources/ll1.png -------------------------------------------------------------------------------- /unity/TestBlock/Assets/Resources/ll1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b37d3ba5d0f19242bd805eda4289033 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 0 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -3 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 0 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: 5 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34ab5ebdb38f6964a8a20efa6778f28b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/New Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/mat/New Material.mat -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/New Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27ed7b19fb4998142a7e3a861cb1164a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/New Render Texture.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/mat/New Render Texture.renderTexture -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/New Render Texture.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d533dff2bdc4304428f48189d1d99b34 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/Sprites-DF.shader.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3df0f823708a6d4987a125b7c00ea22 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/mat/mat.mat -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d86b42cf8a8765346b96ba85746deda7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mat2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/mat/mat2.mat -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mat2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bc3488a454354144b4c9266e637e2de 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mats.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/mats" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _BlockTex ("Block (RGB)", 2D) = "white" {} 5 | } 6 | SubShader { 7 | Tags { "RenderType"="Opaque" } 8 | LOD 200 9 | 10 | CGPROGRAM 11 | #pragma surface surf Lambert 12 | 13 | sampler2D _MainTex; 14 | sampler2D _BlockTex; 15 | struct Input { 16 | float2 uv_MainTex; 17 | }; 18 | 19 | void surf (Input IN, inout SurfaceOutput o) { 20 | float width =1024; 21 | half2 suv=IN.uv_MainTex;//source UV 22 | 23 | //qu int 24 | half2 uv = half2((int)(suv.x*width),(int)(suv.y*width)); 25 | fixed ia = tex2D (_MainTex, uv/width).a; 26 | 27 | fixed sy = ((int)(ia*16/4))*0.25; 28 | fixed sx = fmod((ia * 16),4)*0.25; 29 | float ux = (frac(suv.x*width)) *0.25 ; 30 | float uy = frac(suv.y*width)*0.25+sy; 31 | 32 | 33 | half4 c = tex2D (_BlockTex,half3(ux,uy,0.9)); 34 | o.Albedo = c.rgb; 35 | 36 | o.Alpha = 1; 37 | } 38 | ENDCG 39 | } 40 | FallBack "Diffuse" 41 | } 42 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/mats.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f5bf0ddc29ab344c9bd17c0ab546783 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/pixel.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/pixel" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | } 5 | SubShader { 6 | Tags { "RenderType"="Opaque" } 7 | LOD 200 8 | 9 | CGPROGRAM 10 | #pragma surface surf Lambert 11 | 12 | sampler2D _MainTex; 13 | 14 | struct Input { 15 | float2 uv_MainTex; 16 | }; 17 | 18 | void surf (Input IN, inout SurfaceOutput o) { 19 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 20 | o.Albedo = c.rgb; 21 | o.Alpha = c.a; 22 | } 23 | ENDCG 24 | } 25 | FallBack "Diffuse" 26 | } 27 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/mat/pixel.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c1b42d5ff337545982b34df086cb05 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/peditor.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/peditor.unity -------------------------------------------------------------------------------- /unity/TestBlock/Assets/peditor.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b63eef4768319242a463950de7441ac 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4aaef7557949141851c766b3cfcb5a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/streamingassets/ll1.png -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25fdafd9ce1c19c4899083d181e07d81 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: -1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: -1 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll1_df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/streamingassets/ll1_df.png -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll1_df.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d158801033bba764c9016279430f616d 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -3 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 1 27 | aniso: 0 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: -1 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/streamingassets/ll2.png -------------------------------------------------------------------------------- /unity/TestBlock/Assets/streamingassets/ll2.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f5ac6c2bcf067346b649ff80efdc6be 3 | TextureImporter: 4 | serializedVersion: 2 5 | mipmaps: 6 | mipMapMode: 0 7 | enableMipMap: 1 8 | linearTexture: 0 9 | correctGamma: 0 10 | fadeOut: 0 11 | borderMipMap: 0 12 | mipMapFadeDistanceStart: 1 13 | mipMapFadeDistanceEnd: 3 14 | bumpmap: 15 | convertToNormalMap: 0 16 | externalNormalMap: 0 17 | heightScale: .25 18 | normalMapFilter: 0 19 | isReadable: 0 20 | grayScaleToAlpha: 0 21 | generateCubemap: 0 22 | seamlessCubemap: 0 23 | textureFormat: -1 24 | maxTextureSize: 1024 25 | textureSettings: 26 | filterMode: 1 27 | aniso: -1 28 | mipBias: -1 29 | wrapMode: -1 30 | nPOTScale: 1 31 | lightmap: 0 32 | compressionQuality: 50 33 | spriteMode: 0 34 | spriteExtrude: 1 35 | spriteMeshType: 1 36 | alignment: 0 37 | spritePivot: {x: .5, y: .5} 38 | spritePixelsToUnits: 100 39 | alphaIsTransparency: 0 40 | textureType: -1 41 | buildTargetSettings: [] 42 | spriteSheet: 43 | sprites: [] 44 | spritePackingTag: 45 | userData: 46 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0577637a070f4db4c95a05166725718b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/CreateBox.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class CreateBox : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | Texture2D tex = Resources.Load("j1") as Texture2D; 9 | 10 | for (int y = 0; y < 50;y++ ) 11 | for (int x = 0; x < 100; x++) 12 | { 13 | GameObject obj = GameObject.CreatePrimitive(PrimitiveType.Cube); 14 | obj.transform.position = new Vector3(x, y, 0); 15 | Material mat = new Material(Shader.Find("Diffuse")); 16 | mat.mainTexture = tex; 17 | mat.mainTextureScale = new Vector2(0.25f, 0.25f); 18 | obj.GetComponent().sharedMaterial = mat; 19 | } 20 | } 21 | 22 | // Update is called once per frame 23 | void Update () { 24 | 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/CreateBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8593103dfa5858e4d935b9abe9ea5bc4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/KDTree2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aeb9736d7a40de4e99c5b0d7eb7ae62 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/PixelWorld.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822fb0419986fae4888c7ee1606fca8f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/mattest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/test/mattest.unity -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/mattest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea41aaf515c2d314cac6f805bf550afa 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/pixeltest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 469871c108653904b8a12426f6524d4c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/pixeltest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/Assets/test/pixeltest.unity -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/pixeltest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c8dc80b208302a4c805a3b72355814f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/tcam.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class tcam : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | float t = 0; 12 | // Update is called once per frame 13 | void Update () { 14 | //t += Time.deltaTime; 15 | //if(t>15.0f) 16 | //{ 17 | // t = 0; 18 | //} 19 | //float d =Mathf.Abs( 7.5f - t) /7.5f; 20 | //float v = 0.1f + d * 50; 21 | 22 | this.GetComponent().orthographicSize = s +s2; 23 | } 24 | float s = 0.1f; 25 | float s2 = 0f; 26 | 27 | void OnGUI() 28 | { 29 | s = GUI.VerticalScrollbar(new Rect(50, 0, 24, Screen.height), s, 0.1f, 0.1f, 1.0f); 30 | 31 | s2 = GUI.VerticalScrollbar(new Rect(0, 0, 24, Screen.height), s2, 5.0f, 0f, 50.0f); 32 | 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/test/tcam.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 907b8fc462480034ca1e9b881438ebfe 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/zj.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class zj : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | 14 | } 15 | 16 | 17 | void OnGUI() 18 | { 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /unity/TestBlock/Assets/zj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 132a2c350a8f6de45a6a4ee4a80e6680 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/TestBlock/TestBlock-csharp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/TestBlock/TestBlock-csharp.v12.suo -------------------------------------------------------------------------------- /unity/basemath/Assets/0.menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/0.menu.unity -------------------------------------------------------------------------------- /unity/basemath/Assets/0.menu.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 780a5709db6db3f4d8141a77125bc08b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/1.pi.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/1.pi.unity -------------------------------------------------------------------------------- /unity/basemath/Assets/1.pi.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57da304db761573439034615523e15ee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/2.dot.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/2.dot.unity -------------------------------------------------------------------------------- /unity/basemath/Assets/2.dot.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a901336d48d69f4897a011789faddea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/3.dotcross.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/3.dotcross.unity -------------------------------------------------------------------------------- /unity/basemath/Assets/3.dotcross.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6bd931cc32d0a24a83d01f3f5c370fc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/4.lerp.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/4.lerp.unity -------------------------------------------------------------------------------- /unity/basemath/Assets/4.lerp.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c40fb1bb8932b5b4bbf1870ff8cebc84 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/menu.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class menu : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | GameObject.DontDestroyOnLoad(this.gameObject); 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | 14 | } 15 | 16 | void OnGUI() 17 | { 18 | if(GUI.Button(new Rect(0,0,200,50),"随机数求圆周率")) 19 | { 20 | Application.LoadLevel("1.pi"); 21 | } 22 | if (GUI.Button(new Rect(200, 0, 200, 50), "点积")) 23 | { 24 | Application.LoadLevel("2.dot"); 25 | } 26 | if (GUI.Button(new Rect(400, 0, 200, 50), "点积与叉积")) 27 | { 28 | Application.LoadLevel("3.dotcross"); 29 | } 30 | if (GUI.Button(new Rect(600, 0, 200, 50), "插值")) 31 | { 32 | Application.LoadLevel("4.lerp"); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /unity/basemath/Assets/menu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42a6fe85fdb6b2d4f99ac0bb403d622e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7374095206f48e74a8eecad8cb24ceec 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/QuadCang.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/QuadCang.prefab -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/QuadCang.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ffedfda8aa55684290692ab77bc752a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/QuadHong.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/QuadHong.prefab -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/QuadHong.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd77f26d0dd2ee24da66866c875d02fc 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/matcang.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/matcang.mat -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/matcang.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26eb376d7f871484fa79354c45de7bd7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/mathong.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/mathong.mat -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/mathong.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb8a92b475359684b939554d4ba8d103 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/pic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d50f819811c1e06489dbe8a550ff2c45 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/pic/cang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/pic/cang.jpg -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/pic/cang.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b2796ec9716844ea10a970f59d11b3 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 1 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 5 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/pic/hong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/Assets/resources/pic/hong.jpg -------------------------------------------------------------------------------- /unity/basemath/Assets/resources/pic/hong.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70384e42b1f88a04b89e331398b63f5a 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/basemath/Assets/test_dot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43a92bed1034b3143bb21cebd136b5d3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/basemath/Assets/test_dotcross.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ff7a46fe7f794c4c82bde27c315449e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/basemath/Assets/test_lerp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de4e163f3eded045aac9296a413945b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/basemath/Assets/test_pi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f15339c9fc1131047a4f86abb01174f2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/basemath/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/basemath/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/focus/Assets/1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/1.unity -------------------------------------------------------------------------------- /unity/focus/Assets/1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2aa541f56f344e49a4a0bcaf17b7131 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/focus/Assets/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/back.jpg -------------------------------------------------------------------------------- /unity/focus/Assets/back.jpg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e38d52d40aff28a4cb7073d2fad11a41 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/focus/Assets/fillfull.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | [ExecuteInEditMode] 5 | public class fillfull : MonoBehaviour { 6 | 7 | // Use this for initialization 8 | void Start () { 9 | 10 | } 11 | 12 | // Update is called once per frame 13 | void Update () { 14 | this.transform.localScale = new Vector3((float)Screen.width / (float)Screen.height, 1, 0); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /unity/focus/Assets/fillfull.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0f8c7991e7a0314ca75002d28b9852c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/focus/Assets/mat_back.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/mat_back.mat -------------------------------------------------------------------------------- /unity/focus/Assets/mat_back.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c945ddda4905824995dd24841f594c8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/focus/Assets/mat_over.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/mat_over.mat -------------------------------------------------------------------------------- /unity/focus/Assets/mat_over.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbcf63f1a6506be41b7d52c9ab6f90fa 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/focus/Assets/moveuv.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class moveuv : MonoBehaviour 5 | { 6 | 7 | // Use this for initialization 8 | void Start() 9 | { 10 | mainmat = this.GetComponent().material; 11 | } 12 | Material mainmat; 13 | 14 | // Update is called once per frame 15 | float size = 0.1f; 16 | void Update() 17 | { 18 | Vector3 pos = Input.mousePosition; 19 | size += Input.mouseScrollDelta.y / 100.0f; 20 | if (size < 0.1f) size = 0.1f; 21 | if (size > 0.5f) size = 0.5f; 22 | mainmat.mainTextureScale = new Vector2(1 / size, 1 / size); 23 | float xmax = 1 / size; 24 | float ymax = 1 / size; 25 | float x = 0.5f - pos.x / Screen.width * xmax; 26 | float y = 0.5f - pos.y / Screen.height * ymax; 27 | mainmat.mainTextureOffset = new Vector2(x, y); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /unity/focus/Assets/moveuv.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c7c52b359e8f24a8f99636b2533219 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/focus/Assets/over 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/over 1.png -------------------------------------------------------------------------------- /unity/focus/Assets/over 1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeca87bf446155e4b8474ec6d4af4720 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: 1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/focus/Assets/over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/Assets/over.png -------------------------------------------------------------------------------- /unity/focus/Assets/over.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc0e439a8ade944983733e76bc90187 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: 1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/focus/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/focus/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/letusbead/Assets/1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/1.unity -------------------------------------------------------------------------------- /unity/letusbead/Assets/1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f9980d2a18a6b3429d03e766ab2a623 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3801dde55e7eddc419dcc090d22bfec2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/GetURL.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | 5 | public class GetURL : MonoBehaviour 6 | { 7 | public com_pixelEdit edit; 8 | // Use this for 9 | public UnityEngine.UI.InputField input; 10 | public static string fullUrl; 11 | void Start() { 12 | Application.ExternalEval("u.getUnity().SendMessage(\"" + name + "\", \"ReceiveURL\", document.URL);"); 13 | } 14 | 15 | public void ReceiveURL(string url) { 16 | // this will include the full URL, including url parameters etc. 17 | fullUrl = url; 18 | int i = fullUrl.IndexOf('#'); 19 | if(i<=0)return; 20 | 21 | input.text = fullUrl.Substring(i + 1); 22 | fullUrl = fullUrl.Substring(0, i); 23 | savebtn.ReadByte(input.text, edit); 24 | } 25 | } -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/GetURL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09f70b7cbd2dc324c8e0e1dbdbe0ee13 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 100 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/ImageFlash.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class ImageFlash : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | img = this.GetComponent(); 9 | } 10 | UnityEngine.UI.Image img; 11 | // Update is called once per frame 12 | float t = 0; 13 | void Update () { 14 | t += Time.deltaTime; 15 | if (t > 2.0f) t = 0; 16 | float a = Mathf.Abs(t - 1); 17 | 18 | var c = img.color; 19 | c.a = a; 20 | img.color = c; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/ImageFlash.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 931e11e47c5dce54cbc7ed0deb51d060 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_ColorPick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9066372be4b4f2e408a45a65288954ec 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_pixelEdit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4c0c1ef149f83c47a338769d155b4b6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_rotate.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class com_rotate : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | this.transform.Rotate(Vector3.up, 120 * Time.deltaTime); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_rotate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a2aafdb7f1b2df418bc6b231619a4db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_view.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class com_view : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/com_view.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 249bd3fa5fd8d6e4b8867080db8b6c1a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/edit.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class edit : MonoBehaviour { 5 | 6 | public com_ColorPick pick; 7 | public com_pixelEdit _edit; 8 | 9 | // Use this for initialization 10 | void Start () { 11 | 12 | } 13 | 14 | // Update is called once per frame 15 | void Update () { 16 | if(_edit.drawColor!= pick.GetPickColor()) 17 | _edit.drawColor = pick.GetPickColor(); 18 | if (_edit.drawIndex != pick.GetPickColorIndex()) 19 | _edit.drawIndex = pick.GetPickColorIndex(); 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/edit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e7977a38a81a5243829fa42c6a297ee 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/loadbtn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c9a450fa1c83824dba80e536ef2c7e3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/openbtn.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class openbtn : MonoBehaviour { 5 | 6 | public UnityEngine.UI.InputField input; 7 | // Use this for initialization 8 | void Start () { 9 | this.GetComponent().onClick.AddListener(() => 10 | { 11 | try 12 | { 13 | Application.OpenURL(GetURL.fullUrl + "#" + input.text); 14 | } 15 | catch 16 | { 17 | 18 | } 19 | }); 20 | } 21 | 22 | // Update is called once per frame 23 | void Update () { 24 | 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/openbtn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 651ee28f1aa333546a0aabee6ee86e9e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/code/savebtn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0305d15f48a9e67459c8dfccbd98b55a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae93469ede2706b4ba53a43f6b168e76 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/kdtree2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3611e6075ebe0649a9f72c6f484720b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/kdtree2/KDTree2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4293ee6d24a7db4bb75bf2d127d13ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d56b6af9f5fe5645ae04683f9eb29ec 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 527f120d8de60ab4b83ca5350e8ae88a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Common/CRC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e2cb48df6c673f47a1e6c1b7f76652e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c029ce959526f8b4eb6f5d0e26930c46 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9232241dd6a4f94ab57dde8d8a35dee 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- 1 | // IMatchFinder.cs 2 | 3 | using System; 4 | 5 | namespace SevenZip.Compression.LZ 6 | { 7 | interface IInWindowStream 8 | { 9 | void SetStream(System.IO.Stream inStream); 10 | void Init(); 11 | void ReleaseStream(); 12 | Byte GetIndexByte(Int32 index); 13 | UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit); 14 | UInt32 GetNumAvailableBytes(); 15 | } 16 | 17 | interface IMatchFinder : IInWindowStream 18 | { 19 | void Create(UInt32 historySize, UInt32 keepAddBufferBefore, 20 | UInt32 matchMaxLen, UInt32 keepAddBufferAfter); 21 | UInt32 GetMatches(UInt32[] distances); 22 | void Skip(UInt32 num); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ/IMatchFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d8500de41446fe43bd6f91feda683dc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ/LzBinTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b02ca220f5f704d808c5a8055e7fee 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ/LzInWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2301e886611d2a140a73972ff2aed5b6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZ/LzOutWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e44f6cbfee31be44af649b967457fe5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZMA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 993b65f34cdff6843b29a772f8b8f87d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZMA/LzmaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65d61b66f37ff7341a74e999192b52e4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZMA/LzmaDecoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfef8a192d58a5d44b975c11976a7ab7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/LZMA/LzmaEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2ff17d56034f474682c2b47cf3aaddb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/RangeCoder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd1dbb872f57fa34c912b95d7633f95e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/RangeCoder/RangeCoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d883ba53c2a85ed4481b6096eef10f30 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/RangeCoder/RangeCoderBit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e71bccbd6117354bae72a6e59562bac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/Compress/RangeCoder/RangeCoderBitTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba4d6fa02dc183348a9b7e7d72e44c28 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/ICoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eda94affbc8f53f47a5f7f22d86c7d0b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/codelib/lzma/LZMAHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84fb8926e837a284f96dfe9159b11382 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c86b024ceee6a94db7f0e490a02a715 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d1c7baf0933deb4fb980d35f014348b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/Sprites-DF.shader.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b06402bf498e7b248b33a60fbb8d94d6 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/mat/mat.mat -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0985b474780447a46b30cdf3f17eaaa4 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/mats.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/mats" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _BlockTex ("Block (RGB)", 2D) = "white" {} 5 | } 6 | SubShader { 7 | Tags { "RenderType"="Opaque" } 8 | LOD 200 9 | 10 | CGPROGRAM 11 | #pragma surface surf Lambert 12 | 13 | sampler2D _MainTex; 14 | sampler2D _BlockTex; 15 | struct Input { 16 | float2 uv_MainTex; 17 | }; 18 | 19 | void surf (Input IN, inout SurfaceOutput o) { 20 | float width =1024; 21 | half2 suv=IN.uv_MainTex;//source UV 22 | 23 | //qu int 24 | half2 uv = half2((int)(suv.x*width),(int)(suv.y*width)); 25 | fixed ia = tex2D (_MainTex, uv/width).a; 26 | 27 | fixed sy = ((int)(ia*16/4))*0.25; 28 | fixed sx = fmod((ia * 16),4)*0.25; 29 | float ux = (frac(suv.x*width)) *0.25 ; 30 | float uy = frac(suv.y*width)*0.25+sy; 31 | 32 | 33 | half4 c = tex2D (_BlockTex,half3(ux,uy,0.9)); 34 | o.Albedo = c.rgb; 35 | 36 | o.Alpha = 1; 37 | } 38 | ENDCG 39 | } 40 | FallBack "Diffuse" 41 | } 42 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/mats.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41f05daa73a7c6744b757a0adfd6b1b1 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/pixel.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/pixel" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _ColorTex ("Base (RGB)", 2D) = "white" {} 5 | } 6 | SubShader { 7 | Tags { "RenderType"="Opaque" "Queue"="Transparent" } 8 | LOD 200 9 | Cull Off 10 | ZWrite Off 11 | Blend SrcAlpha OneMinusSrcAlpha 12 | CGPROGRAM 13 | #pragma surface surf Lambert 14 | 15 | sampler2D _MainTex; 16 | sampler2D _ColorTex; 17 | 18 | struct Input { 19 | float2 uv_MainTex; 20 | }; 21 | 22 | void surf (Input IN, inout SurfaceOutput o) { 23 | 24 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 25 | fixed uy = ((int)(c.a * 255/16))/16.0; 26 | 27 | fixed ux = fmod(c.a*255,16) /16; 28 | 29 | half4 cc = tex2D (_ColorTex, half2(ux,uy)); 30 | o.Emission = cc.rgb; 31 | o.Alpha = cc.a; 32 | } 33 | ENDCG 34 | } 35 | FallBack "Diffuse" 36 | } 37 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/pixel.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fa4b85d01d333846b29550c9995474c 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/pixel_sharp.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d810312c48af7fa439dbc8f403c0f1cc 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/pixel_sharp_normal.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b861f66e9d4f61a428138945574d1dcc 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/show_alpha.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/show_alpha" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | } 5 | SubShader { 6 | Tags { "RenderType"="Opaque"} 7 | LOD 200 8 | 9 | CGPROGRAM 10 | #pragma surface surf Lambert 11 | 12 | sampler2D _MainTex; 13 | 14 | struct Input { 15 | float2 uv_MainTex; 16 | }; 17 | 18 | void surf (Input IN, inout SurfaceOutput o) { 19 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 20 | o.Emission =fixed3(c.a*4,c.a*4,c.a*4); 21 | o.Alpha = 1.0f; 22 | } 23 | ENDCG 24 | } 25 | FallBack "Diffuse" 26 | } 27 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/show_alpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 792f831e045831444a21e09aea9752ba 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/show_normal.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/show_normal" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | } 5 | SubShader { 6 | Tags { "RenderType"="Opaque"} 7 | LOD 200 8 | 9 | CGPROGRAM 10 | #pragma surface surf Lambert 11 | 12 | sampler2D _MainTex; 13 | 14 | struct Input { 15 | float2 uv_MainTex; 16 | }; 17 | 18 | void surf (Input IN, inout SurfaceOutput o) { 19 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 20 | o.Emission =c.rgb; 21 | o.Alpha = 1.0f; 22 | } 23 | ENDCG 24 | } 25 | FallBack "Diffuse" 26 | } 27 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/mat/show_normal.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe548f8a6d87754b8595a3ebeffa98a 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb394ff98fe1bbb4f87afdee87b2da6b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/rect.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/rect.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbac70725eb200b43bbfc6ee97af0d3e 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: 2 28 | aniso: 9 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 5 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tile 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/tile 1.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tile 1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be710af286765964fad50b8baef1355a 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 1 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: 2 28 | aniso: 9 29 | mipBias: -1 30 | wrapMode: 1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 5 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/tile.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tile.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 067331f0440e6c244bc931ac81fd3946 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/tri.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/tri.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0104ee932b2646f4d8258bd78d8fcf87 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 8 14 | mipMapFadeDistanceEnd: 10 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: 9 29 | mipBias: -1 30 | wrapMode: 1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 5 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/white.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/white.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ab25b0aaeb4ab84686ebc5c5c9755bf 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/Assets/resources/tex/x.png -------------------------------------------------------------------------------- /unity/letusbead/Assets/resources/tex/x.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06bb6873148eacf4e80d00c06b4f2d39 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 0 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -3 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: 1 28 | aniso: 9 29 | mipBias: -1 30 | wrapMode: 1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 5 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/letusbead/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/letusbead/letusbead-csharp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/letusbead/letusbead-csharp.v12.suo -------------------------------------------------------------------------------- /unity/oggP/Assets/1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/1.unity -------------------------------------------------------------------------------- /unity/oggP/Assets/1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 199ccd4a7101686449b69a315e61bc08 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CSVOggPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 277b054e26112f8479e0c9b3e35d55da 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b7a410b2022ce147b8838ed8724aab9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/AllocChain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2573ab1b0279bd45a74850af6031c85 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Block.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8416ae608fa692b4dabf00d52ec2ceb4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Buffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1fe7fd93aa975246915a97505622e1e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/CodeBook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5747b7be25b1b9945bf384e18bc209ca 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Comment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b198049079c0384abbc282b8c282a68 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Drft.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f079c06a46408f4a8b3206080e29231 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/DspState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c138fa663280ee24eb7b2b547d58dc34 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/EncodeAuxNearestMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e70bbd7e08659e4890b3f184517176e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/EncodeAuxThreshMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4637d29428ff5d64884e5fc84f5097fe 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Floor0.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0327362a73df7b4692ee605c9f9e310 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Floor1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c415a4880a41bf34687caddb03229c5c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/FuncFloor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: debfaa12f55be794bb69694202f23928 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/FuncMapping.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9ba38c3c0da42a4ca80154af07bd601 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/FuncResidue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71e8ad79b82f6c248bd99fb8e0d741ff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/FuncTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffc13e443e7427a4b9fc3dc4f9f60e0f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Info.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef65839ff45301d4d87183d962d78dba 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/InfoMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f16efe84961b647468a1991cf3213e9f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Lookup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99c5004f0ce67054aafbb4c418ad6643 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Lpc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9328e2419b98d429100168618fd9fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Lsp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3609b08a35ec6b64d884937e1c2fae55 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Mapping0.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3bec756831809d41a06e320e95a90fe 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Mdct.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23fa7f6b12a67bc48b7c15330f03b4fd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/OggDecoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a228e7746925dbc48b3dea67c87bb46c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Packet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2255c8cedd8171e479f005ad1072c6d7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Page.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9709cf9b282cf9419870cdd56e74ae3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/PsyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8e896a301d9d1c4cb825fc017177f08 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/PsyLook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d055723bcac9f9740b72fae54909d41e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Residue0.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 778e64d328524aa44b83d676158a6a78 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Residue1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9ab3cc35c4fd0b4a97a1a6a6b6d7c57 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Residue2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37077ce3157bbf34e9b1911adb96a3ed 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/StaticCodeBook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac7ddbb3b9c87c648874c8b00d44423d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/StreamState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c90a9da732470b45822e395a19d4f3f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/SyncState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8225a7a9dc50d0c40b22cf6895a6a759 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/Time0.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34113014cf9cc254583da6cdc48d2d2b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/VorbisFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eaa1675ac4895c4ead8b034d73d1697 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/CsVorbis/csorbisException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8991b0736f48a2f46848204ab19d5eae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/DSPPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57586bb5115c921469c29bb679b30471 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVOggPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 387806c3985380249bbf65f4d94fba1f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4977306df4b535948b2c84d8b0cb0575 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/BufferedReadStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c61d0f7f12077a6458068aa6138cad53 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/DataPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31b7efac7354d5f41ba0bfac1d23d5bc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Huffman.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e89828ebb7cd7734ba8b9ec53c0926c7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/IContainerReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 692c6183debe1a345a8f34268f5d38a1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/IPacketProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 859b04d84ae1e6d439ed5dcb0ea42076 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/IVorbisStreamStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22c09ccb39ec38f4587e79726849666c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Mdct.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc4f4add7caeca94589a590b924cc1f3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/NewStreamEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8dd283d2034cd940b65a5969fa9eff5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d61bcb6a4674354691ef3aada9afb2f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggContainerReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7292fc6185b11f14a9857c77271e9921 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggCrc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7d9ea1e8fbcf2346b76ed33d281aba2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35186466756c5db4082fdb1bd911f090 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggPacketReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6333ad8f4f9bab46a974a59caa15ee7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggPageFlags.cs: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * NVorbis * 3 | * Copyright (C) 2014, Andrew Ward * 4 | * * 5 | * See COPYING for license terms (Ms-PL). * 6 | * * 7 | ***************************************************************************/ 8 | using System; 9 | 10 | namespace NVorbis.Ogg 11 | { 12 | [Flags] 13 | enum PageFlags 14 | { 15 | None = 0, 16 | ContinuesPacket = 1, 17 | BeginningOfStream = 2, 18 | EndOfStream = 4, 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Ogg/OggPageFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 840f285cc93b68645be54c18dd343ecf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/ParameterChangeEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e271a3b2dba91548803370c700d4b00 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/RingBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49a9bb169d7124547817ff03c8aed636 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/StreamReadBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84bffa65cdef6024ebbd9c10bb9e1538 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1602dc30bf0207246b5b1d5f6e68106e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisCodebook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca569f1ff8e91814a8d6ae02ce4760b2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisFloor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7de95c2100b86ac45a9365a10259cb16 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisMapping.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e957b9d51b480274bb7687557484e908 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f02d7bbbe9d391429b533bb08bb6cdd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a10f3db0c005440b5e541b6cbb3620 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisResidue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd56d2f1121387f4d89f48e01f6c3fa0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisStreamDecoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 132e6986520bfe5468a06f5ae9af78b2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/NVorbis/VorbisTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b73c2876c4ba44a8a3b97c08735130 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/Assets/New Font.fontsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/New Font.fontsettings -------------------------------------------------------------------------------- /unity/oggP/Assets/New Font.fontsettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20f2390260ac027478eae0a90f0c3ddc 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76d6cf514bb0f244fb2c8edaf7d14a63 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/1.ogg -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/1.ogg.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/1.ogg.bytes -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/1.ogg.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dea3bc18c13a78848ad6361d805d3340 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/1.ogg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18add3bff2245094d9bb84c2c364f4fb 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: 0 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/2.ogg -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/2.ogg.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/2.ogg.bytes -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/2.ogg.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f6fb8a1bb4f22946801435e17d7a4bf 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/2.ogg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df4e898be9809204792191b6962c807d 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: 0 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/3.ogg -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/3.ogg.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/Assets/resources/3.ogg.bytes -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/3.ogg.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c97a26d842d72554baaa06bac87e5b4c 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/oggP/Assets/resources/3.ogg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e56c9a14ca0922d4eb687c1eabe65453 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: 0 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /unity/oggP/Assets/test.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class test : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | var bs = (Resources.Load("1.ogg") as TextAsset).bytes; 9 | 10 | System.IO.MemoryStream ms = new System.IO.MemoryStream(bs); 11 | //CSVOggPlayer p = new CSVOggPlayer(ms); 12 | NVOggPlayer p = new NVOggPlayer(ms); 13 | this.GetComponent().Play(p); 14 | } 15 | 16 | // Update is called once per frame 17 | void Update () { 18 | this.gameObject.AddComponent 19 | } 20 | 21 | void OnGUI() 22 | { 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /unity/oggP/Assets/test.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 990117ab98927244e8bfcae2dec118b2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/oggP/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/oggP/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa12d19d86ef59e49a027bc5301cbb1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/mat/mat_blue.mat -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748445538ab6c364b84a80a0aa32d168 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/mat/mat_flowlight.mat -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlight.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64c6828b550ec6c4594bc5f9324dc656 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlight3d.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/mat/mat_flowlight3d.mat -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlight3d.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d757ea79b85797748b01abfe81ba2e84 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlightwithmask.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/mat/mat_flowlightwithmask.mat -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/mat_flowlightwithmask.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8821344fd11cdf54787b2cc70bb84e52 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_default.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_default" //Shader的名字 2 | { 3 | //这一段是出现在Inspector面板中的Shader的属性 4 | Properties { 5 | _MainTex ("Base (RGB)", 2D) = "white" {} 6 | } 7 | SubShader { 8 | Tags { "RenderType"="Opaque" } 9 | LOD 200 10 | 11 | CGPROGRAM 12 | #pragma surface surf Lambert //这里指定shader类型 13 | //surface代表surfaceshader,surf代表surfaceshader的函数名为surf 14 | //Lambert代表光照模型 15 | 16 | sampler2D _MainTex;//这里要有和Properties里面的同名变量 17 | 18 | struct Input { 19 | float2 uv_MainTex;//指定surfaceshader输入参数 20 | }; 21 | 22 | void surf (Input IN, inout SurfaceOutput o) { 23 | //采样贴图 24 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 25 | 26 | o.Albedo = c.rgb;//这是输出的漫反射颜色,会受光照影响 27 | o.Alpha = c.a;//这是输出的alpha,在默认的renderqueue设置下,alpha没有效果 28 | } 29 | ENDCG 30 | } 31 | FallBack "Diffuse"//在当前shader不支持的时候使用Diffuse替代 32 | //有很多用途,比如我们没有指定计算投影的shader函数 33 | //使用Fallback选项,在此材质计算投影时,使用Diffuse替代 34 | //否则我们不指定投影shader的情况下,该shader没有投影功能 35 | } 36 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_default.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e33b91d73401a43be46b501cec29c0 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight3d.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight3d" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _LightTex ("_LightTex Base (RGB) Trans (A)", 2D) = "black" {} 5 | _speed ("LightSpeed", Vector) = (1,1,0,0) 6 | } 7 | SubShader { 8 | Tags { "RenderType"="Opaque" } 9 | LOD 200 10 | 11 | CGPROGRAM 12 | #pragma surface surf Lambert 13 | 14 | sampler2D _MainTex; 15 | sampler2D _LightTex;//流光图 16 | float2 _speed;//速度 17 | 18 | struct Input { 19 | float2 uv_MainTex; 20 | float3 worldNormal;//增加最终的法线参数 21 | }; 22 | 23 | void surf (Input IN, inout SurfaceOutput o) { 24 | 25 | float2 ruv = IN.worldNormal.xy;//使用normal来做uv,可以取得如环境反射版的效果 26 | ruv = ruv *0.5;//收敛到-0.5到0.5之间的一个球形单位 27 | ruv+=_Time.xx*_speed;//运动他们 28 | 29 | half4 c = tex2D (_MainTex, IN.uv_MainTex)+ tex2D(_LightTex, ruv.xy); 30 | o.Albedo = c.rgb; 31 | o.Alpha = c.a; 32 | } 33 | ENDCG 34 | } 35 | FallBack "Diffuse" 36 | } 37 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight3d.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9d63e1a5bb7acb499dd6c9182afb9e7 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step01.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight_step01" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _FlowTex ("Light Texture(A)", 2D) = "black" {} //流光贴图 5 | _uvadd ("",range(0,1)) = 0//流光uv改变量 6 | 7 | } 8 | SubShader { 9 | Tags { "RenderType"="Opaque" } 10 | LOD 200 11 | 12 | CGPROGRAM 13 | #pragma surface surf Lambert 14 | 15 | sampler2D _MainTex; 16 | sampler2D _FlowTex;//属性 17 | float _uvadd;//属性 18 | 19 | struct Input { 20 | float2 uv_MainTex; 21 | }; 22 | 23 | void surf (Input IN, inout SurfaceOutput o) { 24 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 25 | 26 | float2 uv =IN.uv_MainTex;//计算流光uv 27 | uv.x/=2;//取一半 28 | uv.x+=_uvadd;//横向加上 29 | 30 | 31 | float flow = tex2D (_FlowTex, uv).a;//取流光亮度 32 | 33 | o.Albedo = c.rgb + float3(flow,flow,flow);//加上流光亮度颜色 34 | o.Alpha = c.a; 35 | } 36 | ENDCG 37 | } 38 | FallBack "Diffuse" 39 | } 40 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step01.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 965d70dc2fbf0bb42960d61e9996a048 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step02.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight_step02" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _FlowTex ("Light Texture(A)", 2D) = "black" {} //流光贴图 5 | _uvaddspeed ("",float) = 2//流光uv改变速度 6 | 7 | } 8 | SubShader { 9 | Tags { "RenderType"="Opaque" } 10 | LOD 200 11 | 12 | CGPROGRAM 13 | #pragma surface surf Lambert 14 | 15 | sampler2D _MainTex; 16 | sampler2D _FlowTex;//属性 17 | float _uvaddspeed;//属性 18 | struct Input { 19 | float2 uv_MainTex; 20 | }; 21 | 22 | void surf (Input IN, inout SurfaceOutput o) { 23 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 24 | 25 | float2 uv =IN.uv_MainTex;//计算流光uv 26 | uv.x/=2;//取一半 27 | uv.x+=_Time.y*_uvaddspeed;//横向加上 28 | 29 | 30 | float flow = tex2D (_FlowTex, uv).a;//取流光亮度 31 | 32 | o.Albedo = c.rgb + float3(flow,flow,flow);//加上流光亮度颜色 33 | o.Alpha = c.a; 34 | } 35 | ENDCG 36 | } 37 | FallBack "Diffuse" 38 | } 39 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step02.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f141adc47de1814da2856ecd93f7446 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step03.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight_step03" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _FlowTex ("Light Texture(A)", 2D) = "black" {} //流光贴图 5 | _uvaddspeed ("",float) = 2//流光uv改变速度 6 | 7 | } 8 | SubShader { 9 | Tags {"RenderType"="Transparent" "Queue"="Transparent" }//改为透明 10 | LOD 200 11 | Blend SrcAlpha OneMinusSrcAlpha //指定alphaBlend 12 | CGPROGRAM 13 | #pragma surface surf Lambert 14 | 15 | sampler2D _MainTex; 16 | sampler2D _FlowTex;//属性 17 | float _uvaddspeed;//属性 18 | struct Input { 19 | float2 uv_MainTex; 20 | }; 21 | 22 | void surf (Input IN, inout SurfaceOutput o) { 23 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 24 | 25 | float2 uv =IN.uv_MainTex;//计算流光uv 26 | uv.x/=2;//取一半 27 | uv.x+=_Time.y*_uvaddspeed;//横向加上 28 | 29 | 30 | float flow = tex2D (_FlowTex, uv).a;//取流光亮度 31 | 32 | o.Albedo = c.rgb + float3(flow,flow,flow);//加上流光亮度颜色 33 | o.Alpha = c.a; 34 | } 35 | ENDCG 36 | } 37 | //FallBack "Diffuse" 去掉fallback,也就不投影了 38 | } 39 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step03.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28652130e33d5a440942d1fa9a520507 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step04.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight_step04" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _FlowTex ("Light Texture(A)", 2D) = "black" {} //流光贴图 5 | _uvaddspeed ("",float) = 2//流光uv改变速度 6 | 7 | } 8 | SubShader { 9 | Tags {"RenderType"="Transparent" "Queue"="Transparent" }//改为透明 10 | LOD 200 11 | Blend SrcAlpha OneMinusSrcAlpha //指定alphaBlend 12 | CGPROGRAM 13 | #pragma surface surf Lambert 14 | 15 | sampler2D _MainTex; 16 | sampler2D _FlowTex;//属性 17 | float _uvaddspeed;//属性 18 | struct Input { 19 | float2 uv_MainTex; 20 | }; 21 | 22 | void surf (Input IN, inout SurfaceOutput o) { 23 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 24 | 25 | float2 uv =IN.uv_MainTex;//计算流光uv 26 | uv.x/=2;//取一半 27 | uv.x+=_Time.y*_uvaddspeed;//横向加上 28 | 29 | 30 | float flow = tex2D (_FlowTex, uv).a;//取流光亮度 31 | 32 | //o.Albedo = c.rgb + float3(flow,flow,flow);//加上流光亮度颜色 33 | o.Emission = c.rgb + float3(flow,flow,flow);//改为输出Emission,不受光影响 34 | o.Alpha = c.a; 35 | } 36 | ENDCG 37 | } 38 | //FallBack "Diffuse" 去掉fallback,也就不投影了 39 | } 40 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step04.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60c031e89667c8248b58e6a64e0bb13f 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step05.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/shader_flowlight_step05" { 2 | Properties { 3 | _MainTex ("Base (RGB)", 2D) = "white" {} 4 | _FlowTex ("Light Texture(A)", 2D) = "black" {} //流光贴图 5 | _MaskTex ("Mask Texture(A)", 2D) = "white" {} //遮罩贴图 6 | _uvaddspeed ("",float) = 2//流光uv改变速度 7 | 8 | } 9 | SubShader { 10 | Tags { "RenderType"="Opaque" } 11 | LOD 200 12 | 13 | CGPROGRAM 14 | #pragma surface surf Lambert 15 | 16 | sampler2D _MainTex; 17 | sampler2D _FlowTex;//属性 18 | sampler2D _MaskTex;//属性 19 | float _uvaddspeed;//属性 20 | struct Input { 21 | float2 uv_MainTex; 22 | }; 23 | 24 | void surf (Input IN, inout SurfaceOutput o) { 25 | half4 c = tex2D (_MainTex, IN.uv_MainTex); 26 | 27 | float2 uv =IN.uv_MainTex;//计算流光uv 28 | uv.x/=2;//取一半 29 | uv.x+=_Time.y*_uvaddspeed;//横向加上 30 | 31 | 32 | float flow = tex2D (_FlowTex, uv).a;//取流光亮度 33 | float mask = tex2D (_MaskTex, IN.uv_MainTex).a;//取mask权重 34 | o.Albedo = c.rgb + float3(flow,flow,flow)*mask;//加上流光亮度颜色 35 | o.Alpha = c.a; 36 | } 37 | ENDCG 38 | } 39 | FallBack "Diffuse" 40 | } 41 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/mat/shader_flowlight_step05.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 922f71edfdb2c8240a47551b1764595f 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0eaa83b72dd48a4fb3686b7f7dc8a8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5520fa23fe88c4d489f635e731f3460c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/resources/texture/flow.png -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture/liuguang_ji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/resources/texture/liuguang_ji.png -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture/logo01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/resources/texture/logo01.jpg -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture/logo01_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/resources/texture/logo01_alpha.png -------------------------------------------------------------------------------- /unity/shader_btw/Assets/resources/texture/logo01_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/resources/texture/logo01_mask.png -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_3d.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/shader_3d.unity -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_3d.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 465f298e095f57f498e164e654275aab 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_single.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class shader_single : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_single.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fd458588084c504498ad80d0474d963 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_single.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/Assets/shader_single.unity -------------------------------------------------------------------------------- /unity/shader_btw/Assets/shader_single.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3e79edb4a0ca994f8717df1797dc9a0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/shader_btw/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/unity/shader_btw/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /win/havefun/bin/Debug/havefun.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /win/havefun/bin/Debug/havefun.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/bin/Debug/havefun.pdb -------------------------------------------------------------------------------- /win/havefun/bin/Debug/havefun.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/bin/Debug/havefun.vshost.exe -------------------------------------------------------------------------------- /win/havefun/bin/Debug/havefun.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /win/havefun/bin/Debug/地球上最小的3D引擎.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/bin/Debug/地球上最小的3D引擎.exe -------------------------------------------------------------------------------- /win/havefun/havefun.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/havefun.v12.suo -------------------------------------------------------------------------------- /win/havefun/havefun0/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("havefun")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("havefun")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("8fec1727-f684-4415-8f77-03e474a564ee")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /win/havefun/havefun0/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/havefun0/bin/Debug/havefun.exe -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/havefun0/bin/Debug/havefun.pdb -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun/havefun0/bin/Debug/havefun.vshost.exe -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /win/havefun/havefun0/bin/Debug/havefun.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /win/havefun1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("havefun1")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("havefun1")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("8acdfacc-e711-44cb-a076-b464edd6288d")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /win/havefun1/bin/Debug/havefun1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun1/bin/Debug/havefun1.exe -------------------------------------------------------------------------------- /win/havefun1/bin/Debug/havefun1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun1/bin/Debug/havefun1.pdb -------------------------------------------------------------------------------- /win/havefun1/bin/Debug/havefun1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightszero/BlockFun/5b8582f3d1eeb545482ac02d18d0ff584e03f71c/win/havefun1/bin/Debug/havefun1.vshost.exe -------------------------------------------------------------------------------- /win/havefun1/bin/Debug/havefun1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | --------------------------------------------------------------------------------