Changeset 8794
- Timestamp:
- 2017-06-16 12:38:53 (5 years ago)
- Location:
- 2016/27/PaavoH
- Files:
-
- 55 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
2016/27/PaavoH/Animal.io/Animal.io B5 HOTFIX #1/Animal.io B5 HOTFIX #1_Data/output_log.txt
r8747 r8794 20 20 Platform assembly: C:\MyTemp\PaavoH\Animal.io\Animal.io B5 HOTFIX #1\Animal.io B5 HOTFIX #1_Data\Managed\UnityEngine.Purchasing.dll (this message is harmless) 21 21 Loading C:\MyTemp\PaavoH\Animal.io\Animal.io B5 HOTFIX #1\Animal.io B5 HOTFIX #1_Data\Managed\UnityEngine.Purchasing.dll into Unity Child Domain 22 - Completed reload, in 0. 070seconds22 - Completed reload, in 0.145 seconds 23 23 Platform assembly: C:\MyTemp\PaavoH\Animal.io\Animal.io B5 HOTFIX #1\Animal.io B5 HOTFIX #1_Data\Managed\System.Core.dll (this message is harmless) 24 24 Platform assembly: C:\MyTemp\PaavoH\Animal.io\Animal.io B5 HOTFIX #1\Animal.io B5 HOTFIX #1_Data\Managed\System.dll (this message is harmless) … … 30 30 <RI> Initialized touch support. 31 31 32 UnloadTime: 0. 967726ms32 UnloadTime: 0.895883 ms 33 33 Setting up 2 worker threads for Enlighten. 34 Thread -> id: 2efc -> priority: 1 35 Thread -> id: 1edc -> priority: 1 36 MatchMakingClient Create :https://mm.unet.unity3d.com/json/reply/CreateMatchRequest 34 Thread -> id: 1608 -> priority: 1 35 Thread -> id: 3010 -> priority: 1 36 MatchMakingClient ListMatches :https://mm.unet.unity3d.com/json/reply/ListMatchRequest 37 38 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) 39 40 MatchMakingClient ListMatches :https://mm.unet.unity3d.com/json/reply/ListMatchRequest 41 42 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) 43 44 MatchMakingClient ListMatches :https://mm.unet.unity3d.com/json/reply/ListMatchRequest 45 46 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) 47 48 MatchMakingClient Join :https://mm.unet.unity3d.com/json/reply/JoinMatchRequest 37 49 38 50 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) … … 46 58 (Filename: Line: 462) 47 59 48 NetworkLobbyManager no more players for this connection.49 50 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)51 52 Unloading 5 Unused Serialized files (Serialized files now loaded: 0)53 UnloadTime: 1.594779 ms54 55 Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 2797.56 Total: 1.226956 ms (FindLiveObjects: 0.126469 ms CreateObjectMapping: 0.076477 ms MarkObjects: 1.008117 ms DeleteObjects: 0.014898 ms)57 58 Log: connection {1} has been disconnected by timeout; address {::ffff:52.28.11.218:9999}59 Attempt to send to not connected connection {1}60 61 (Filename: Line: 359)62 63 Failed to send internal buffer channel:1 bytesToSend:3164 65 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)66 67 Send Error: WrongConnection channel:1 bytesToSend:3168 69 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)70 71 ServerDisconnected due to error: Timeout72 73 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)74 75 MatchMakingClient Destroy :https://mm.unet.unity3d.com/json/reply/DestroyMatchRequest76 77 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)78 79 MatchMakingClient DropConnection :https://mm.unet.unity3d.com/json/reply/DropConnectionRequest80 81 (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)82 83 Unloading 3 Unused Serialized files (Serialized files now loaded: 0)84 UnloadTime: 0.701874 ms85 86 Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2008.87 Total: 1.157100 ms (FindLiveObjects: 0.085085 ms CreateObjectMapping: 0.079788 ms MarkObjects: 0.966071 ms DeleteObjects: 0.025492 ms)88 -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/UltimateAdventure.cs
r8747 r8794 24 24 private IntMeter OxygenMeter; 25 25 List<string> destroybleThings = new List<string>(new string[]{ "PhysicsBlock", "moonstone", "turret", "snake", "silmamob","wizard","Ninja"}); 26 List<string> JumpThings = new List<string>(new string[] { "PhysicsBlock", "moonstone", "turret", "NBO"}); 26 27 27 28 PlatformCharacter pelaaja1; … … 40 41 Image Player = LoadImage("PlayerV2"); 41 42 Image SpeedShoeImage = LoadImage("SpeedShoe"); 42 //Image MoonstoneImage = LoadImage("Moonstone");43 Image MoonstoneImage = LoadImage("Moonstone"); 43 44 Image WizardrWand = LoadImage("WizardingWandV3"); 44 45 Image LogoImage = LoadImage("LogoV1"); … … 80 81 ClearAll(); 81 82 LuoLogo(); 82 MultiSelectWindow alkuValikko = new MultiSelectWindow("UltimateAdventure", "Aloita peli", "Options", "Avaa valittu kenttä","Trophies","Lopeta"); 83 84 alkuValikko.AddItemHandler(0, AloitaPeli); 85 alkuValikko.AddItemHandler(1, MenuOptions); 86 alkuValikko.AddItemHandler(2, SelectLevel); 87 alkuValikko.AddItemHandler(3, Achivement); 88 alkuValikko.AddItemHandler(4, Exit); 89 90 Add(alkuValikko); 83 IsMouseVisible = true; 84 85 PushButton RunGame = new PushButton("Start"); 86 RunGame.Y = 80; 87 RunGame.Clicked += AloitaPeli; 88 RunGame.Size *= 1.5; 89 RunGame.TextScale *= 1.5; 90 Add(RunGame); 91 92 PushButton OptionsB = new PushButton("Options"); 93 OptionsB.Y = 0; 94 OptionsB.Clicked += MenuOptions; 95 OptionsB.Size *= 1.5; 96 OptionsB.TextScale *= 1.5; 97 Add(OptionsB); 98 99 PushButton OSL = new PushButton("Select Level"); 100 OSL.Y = -80; 101 OSL.Clicked += SelectLevel; 102 OSL.Size *= 1.5; 103 OSL.TextScale *= 1.5; 104 Add(OSL); 105 106 PushButton ExitB = new PushButton("Quit"); 107 ExitB.Y = -160; 108 ExitB.Clicked += Exit; 109 ExitB.Size *= 1.5; 110 ExitB.TextScale *= 1.5; 111 Add(ExitB); 112 113 //MultiSelectWindow alkuValikko = new MultiSelectWindow("UltimateAdventure", "Aloita peli", "Options", "Avaa valittu kenttä","Trophies","Lopeta"); 114 // 115 //alkuValikko.AddItemHandler(0, AloitaPeli); 116 //alkuValikko.AddItemHandler(1, MenuOptions); 117 //alkuValikko.AddItemHandler(2, SelectLevel); 118 //alkuValikko.AddItemHandler(3, Achivement); 119 //alkuValikko.AddItemHandler(4, Exit); 120 121 //Add(alkuValikko); 91 122 } 92 123 void LuoPeliValikko() … … 117 148 void AloitaPeli() 118 149 { 119 StartLevel("kentta1"); 120 150 IsMouseVisible = false; 151 StartLevel("Layerbybit"); 152 MediaPlayer.Play("Backroundmusic"); 153 MediaPlayer.IsRepeating = true; 121 154 } 122 155 … … 334 367 PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 335 368 taso.Position = paikka; 369 taso.Tag = "NBO"; 336 370 taso.Color = RandomGen.NextColor(); 337 371 Add(taso); … … 388 422 PhysicsObject Moonstone = PhysicsObject.CreateStaticObject(leveys, korkeus); 389 423 Moonstone.Position = paikka; 390 //Moonstone.Image = MoonstoneImage;424 Moonstone.Image = MoonstoneImage; 391 425 Moonstone.Tag = "moonstone"; 392 426 Add(Moonstone); … … 516 550 LGM.Brain = LGMAivot; 517 551 Add(LGM); 552 553 foreach (String s in JumpThings) 554 AddCollisionHandler<PlatformCharacter,PhysicsObject>(LGM, s, LGMJump); 555 556 //Timer ajastin = new Timer(); 557 //ajastin.Interval = 6; 558 //ajastin.Timeout += delegate { LGM.Jump(500); }; 559 //ajastin.Start(); 518 560 } 519 561 … … 872 914 NinjaIsRaged = true; 873 915 } 916 917 void LGMJump(PlatformCharacter LGM, PhysicsObject s) 918 { 919 if(LGM.Bottom + 3 < s.Top) 920 LGM.Jump(400); 921 } 874 922 } -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/UltimateAdventure.csproj.Debug.cachefile
r8747 r8794 65 65 Content\Empty.xnb 66 66 Content\FAAAAAST.xnb 67 Content\Layerbybit.xnb 68 Content\Moonstone.xnb 69 Content\Backroundmusic2.xnb 67 70 Content\Backroundmusic.wma -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/bin/x86/Debug/Data/Options.xml
r8747 r8794 6 6 </Field> 7 7 <Field Name="Volume" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 8 <Value> 1</Value>8 <Value>0</Value> 9 9 </Field> 10 10 <Field Name="FullScreen" Type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r8747 r8794 622 622 <Time>2017-06-15T13:44:45.3159206+03:00</Time> 623 623 </Item> 624 <Item> 625 <Source>Layerbybit.txt</Source> 626 <Name>Layerbybit</Name> 627 <Importer>TextFileImporter</Importer> 628 <Processor>TextFileContentProcessor</Processor> 629 <Options>None</Options> 630 <Output>C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\Layerbybit.xnb</Output> 631 <Time>2017-06-16T11:45:01.3236401+03:00</Time> 632 </Item> 633 <Item> 634 <Source>Moonstone.png</Source> 635 <Name>Moonstone</Name> 636 <Importer>TextureImporter</Importer> 637 <Processor>TextureProcessor</Processor> 638 <Options>None</Options> 639 <Output>C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\Moonstone.xnb</Output> 640 <Time>2017-06-16T11:48:43.4811804+03:00</Time> 641 </Item> 624 642 <BuildSuccessful>true</BuildSuccessful> 625 643 <Settings> -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/obj/x86/Debug/UltimateAdventure.csproj.FileListAbsolute.txt
r8747 r8794 74 74 C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\Empty.xnb 75 75 C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\FAAAAAST.xnb 76 C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\Layerbybit.xnb 77 C:\MyTemp\PaavoH\UltimateAdventure\UltimateAdventure\UltimateAdventure\bin\x86\Debug\Content\Moonstone.xnb -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventure/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r8747 r8794 66 66 Content\Empty.xnb 67 67 Content\FAAAAAST.xnb 68 Content\Layerbybit.xnb 69 Content\Moonstone.xnb -
2016/27/PaavoH/UltimateAdventure/UltimateAdventure/UltimateAdventureContent/UltimateAdventureContent.contentproj
r8747 r8794 425 425 </Compile> 426 426 </ItemGroup> 427 <ItemGroup> 428 <Compile Include="Layerbybit.txt"> 429 <Name>Layerbybit</Name> 430 <Importer>TextFileImporter</Importer> 431 <Processor>TextFileContentProcessor</Processor> 432 </Compile> 433 </ItemGroup> 434 <ItemGroup> 435 <Compile Include="Moonstone.png"> 436 <Name>Moonstone</Name> 437 <Importer>TextureImporter</Importer> 438 <Processor>TextureProcessor</Processor> 439 </Compile> 440 </ItemGroup> 427 441 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 428 442 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.