- Timestamp:
- 2016-07-01 11:41:35 (3 years ago)
- Location:
- 2016/26/SallaK
- Files:
-
- 105 added
- 23 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
2016/26/SallaK/Sandwich/Sandwich/Sandwich/Sandwich.cs
r7604 r7619 26 26 IntMeter pisteLaskuri; 27 27 28 Image tahtiKuva = LoadImage("tahti"); 29 Image pelaajanKuva = LoadImage("norsu"); 28 Image pelaajanKuva = LoadImage("xmanuli"); 29 30 Image ylätiilenkuva = LoadImage("yläpuu"); 31 Image alatiilenkuva = LoadImage("alapuu"); 32 33 34 Image juustopi = LoadImage("xjuustop"); 35 Image juustoer = LoadImage("xjuustoe"); 36 Image juustohy = LoadImage("xjuustoh"); 37 38 Image tomaattihy = LoadImage("xtomaattih"); 39 Image tomaattipi = LoadImage("xtomaattip"); 40 Image tomaattier = LoadImage("xtomaattie"); 41 42 Image leipähy = LoadImage("xleipäh"); 43 Image leipäpi = LoadImage("xleipäp"); 44 Image leipäer = LoadImage("xleipäe"); 45 46 Image voihy = LoadImage("xvoih"); 47 Image voipi = LoadImage("xvoip"); 48 Image voier = LoadImage("xvoie"); 49 50 Image kalahy = LoadImage("xkalah"); 51 Image kalapi = LoadImage("xkalap"); 52 Image kalaer = LoadImage("xkalae"); 53 54 Image salaattihy = LoadImage("xsalaattih"); 55 Image salaattipi = LoadImage("xsalaattip"); 56 Image salaattier = LoadImage("xsalaattie"); 57 58 Image keittiö = LoadImage("keittiö"); 30 59 31 60 Manuli mauno; … … 41 70 LuoPistelaskuri(); 42 71 Camera.Follow(mauno); 43 Camera.ZoomFactor = 1. 2;72 Camera.ZoomFactor = 1.5; 44 73 Camera.StayInLevel = true; 74 45 75 } 46 76 47 77 void LuoKentta() 48 78 { 49 ColorTileMap ruudut = ColorTileMap.FromLevelAsset("mystinenmanulikenttä 5");79 ColorTileMap ruudut = ColorTileMap.FromLevelAsset("mystinenmanulikenttäver17"); 50 80 ruudut.SetTileMethod(Color.FromHexCode("B200FF"), LisaaPelaaja); 51 ruudut.SetTileMethod(Color.Black, LisaaTaso, Color.Black);52 ruudut.SetTileMethod(Color.FromHexCode("808080"), LisaaTaso, Color.DarkGray);53 54 ruudut.SetTileMethod(Color.FromHexCode("FFD800"), Luoaine,Color.FromHexCode("FFD800"), "juustoh");55 ruudut.SetTileMethod(Color.FromHexCode("7F6A00"), Luoaine, Color.FromHexCode("7F6A00"), "juustop");56 ruudut.SetTileMethod(Color.FromHexCode("FFE97F"), Luoaine, Color.FromHexCode("FFE97F"), "juustoe");57 58 ruudut.SetTileMethod(Color.FromHexCode("FF0000"), Luoaine, Color.FromHexCode("FF0000"), "tomaattih");59 ruudut.SetTileMethod(Color.FromHexCode("7F0000"), Luoaine, Color.FromHexCode("7F0000"), "tomaattip");60 ruudut.SetTileMethod(Color.FromHexCode("FF7F7F"), Luoaine, Color.FromHexCode("FF7F7F"), "tomaattie");61 62 ruudut.SetTileMethod(Color.FromHexCode("FF6A00"), Luoaine, Color.FromHexCode("FF6A00"), "voih");63 ruudut.SetTileMethod(Color.FromHexCode("7F3300"), Luoaine, Color.FromHexCode("7F3300"), "voip");64 ruudut.SetTileMethod(Color.FromHexCode("FFB27F"), Luoaine, Color.FromHexCode("FFB27F"), "voie");65 66 ruudut.SetTileMethod(Color.FromHexCode("0026FF"), Luoaine, Color.FromHexCode("0026FF"), "kalah");67 ruudut.SetTileMethod(Color.FromHexCode("00137F"), Luoaine, Color.FromHexCode("00137F"), "kalap");68 ruudut.SetTileMethod(Color.FromHexCode("00FFFF"), Luoaine, Color.FromHexCode("00FFFF"), "kalae");69 70 ruudut.SetTileMethod(Color.FromHexCode("007F0E"), Luoaine, Color.FromHexCode("007F0E"), "salaattih");71 ruudut.SetTileMethod(Color.FromHexCode("003F06"), Luoaine, Color.FromHexCode("003F06"), "salaattip");72 ruudut.SetTileMethod(Color.FromHexCode(" 4CFF80"), Luoaine, Color.FromHexCode("4CFF80"), "salaattie");73 74 ruudut.SetTileMethod(Color.FromHexCode("4A271F"), Luoaine, Color.FromHexCode("4A271F"), "leipäh");75 ruudut.SetTileMethod(Color.FromHexCode("261410"), Luoaine, Color.FromHexCode("261410"), "leipäp");76 ruudut.SetTileMethod(Color.FromHexCode("A87A61"), Luoaine, Color.FromHexCode("A87A61"), "leipäe");81 ruudut.SetTileMethod(Color.Black, LisaaTaso,alatiilenkuva); 82 ruudut.SetTileMethod(Color.FromHexCode("808080"), LisaaTaso, ylätiilenkuva); 83 84 ruudut.SetTileMethod(Color.FromHexCode("FFD800"), Luoaine, juustohy, "juustoh"); 85 ruudut.SetTileMethod(Color.FromHexCode("7F6A00"), Luoaine, juustopi, "juustop"); 86 ruudut.SetTileMethod(Color.FromHexCode("FFE97F"), Luoaine, juustoer, "juustoe"); 87 88 ruudut.SetTileMethod(Color.FromHexCode("FF0000"), Luoaine, tomaattihy, "tomaattih"); 89 ruudut.SetTileMethod(Color.FromHexCode("7F0000"), Luoaine, tomaattipi, "tomaattip"); 90 ruudut.SetTileMethod(Color.FromHexCode("FF7F7F"), Luoaine, tomaattier, "tomaattie"); 91 92 ruudut.SetTileMethod(Color.FromHexCode("FF6A00"), Luoaine, voihy, "voih"); 93 ruudut.SetTileMethod(Color.FromHexCode("7F3300"), Luoaine, voipi, "voip"); 94 ruudut.SetTileMethod(Color.FromHexCode("FFB27F"), Luoaine, voier, "voie"); 95 96 ruudut.SetTileMethod(Color.FromHexCode("0026FF"), Luoaine, kalahy, "kalah"); 97 ruudut.SetTileMethod(Color.FromHexCode("00137F"), Luoaine, kalapi, "kalap"); 98 ruudut.SetTileMethod(Color.FromHexCode("00FFFF"), Luoaine, kalaer, "kalae"); 99 100 ruudut.SetTileMethod(Color.FromHexCode("007F0E"), Luoaine, salaattihy, "salaattih"); 101 ruudut.SetTileMethod(Color.FromHexCode("003F06"), Luoaine, salaattipi, "salaattip"); 102 ruudut.SetTileMethod(Color.FromHexCode("B6FF0C"), Luoaine, salaattier, "salaattie"); 103 104 ruudut.SetTileMethod(Color.FromHexCode("4A271F"), Luoaine, leipähy, "leipäh"); 105 ruudut.SetTileMethod(Color.FromHexCode("261410"), Luoaine, leipäpi, "leipäp"); 106 ruudut.SetTileMethod(Color.FromHexCode("A87A61"), Luoaine, leipäer, "leipäe"); 77 107 78 108 ruudut.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 79 109 Level.CreateBorders(); 80 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 110 Level.Background.Image = keittiö; 111 Level.Background.FitToLevel(); 81 112 } 82 113 … … 96 127 } 97 128 98 void LisaaTaso(Vector paikka, double leveys, double korkeus, Color vari)129 void LisaaTaso(Vector paikka, double leveys, double korkeus, Image kuva) 99 130 { 100 131 PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 101 132 taso.Position = paikka; 102 taso. Color = vari;133 taso.Image = kuva; 103 134 Add(taso); 104 135 } … … 112 143 113 144 114 void Luoaine(Vector paikka, double leveys, double korkeus, Color vari, String tag)145 void Luoaine(Vector paikka, double leveys, double korkeus, Image kuva2, String tag) 115 146 { 116 147 PhysicsObject aine = new PhysicsObject(leveys, korkeus); 117 148 aine.Position = paikka; 118 149 aine.IgnoresGravity = true; 119 aine. Color = vari;150 aine.Image = kuva2; 120 151 aine.Tag = tag; 121 152 Add(aine); 122 153 AddCollisionHandler(aine, "pelaaja", Pelaajakeraaaineen); 154 155 123 156 124 157 } -
2016/26/SallaK/Sandwich/Sandwich/Sandwich/Sandwich.csproj.Debug.cachefile
r7604 r7619 1 1 Content\maali.xnb 2 2 Content\norsu.xnb 3 Content\tahti.xnb4 3 Content\kentta1.xnb 5 Content\mystinenmanulikenttÀ.xnb 6 Content\mystinenmanulikenttÀ2.xnb 7 Content\mystinenmanulikenttÀ3.xnb 8 Content\mystinenmanulikenttÀ4.xnb 9 Content\mystinenmanulikenttÀ5.xnb 4 Content\ylÀtiili.xnb 5 Content\alatiili.xnb 6 Content\ylÀtiilikuvanen.xnb 7 Content\alatiilikuvanen.xnb 8 Content\xjuustoe.xnb 9 Content\xjuustoh.xnb 10 Content\xjuustop.xnb 11 Content\xkalae.xnb 12 Content\xkalah.xnb 13 Content\xkalap.xnb 14 Content\xleipÀe.xnb 15 Content\xleipÀh.xnb 16 Content\xleipÀp.xnb 17 Content\xmanuli.xnb 18 Content\xsalaattie.xnb 19 Content\xsalaattih.xnb 20 Content\xsalaattip.xnb 21 Content\xtomaattie.xnb 22 Content\xtomaattih.xnb 23 Content\xtomaattip.xnb 24 Content\xvoie.xnb 25 Content\xvoih.xnb 26 Content\xalatiilikuva.xnb 27 Content\xvoip.xnb 28 Content\xylÀtiilikuva.xnb 29 Content\mystinenmanulikenttÀver13.xnb 30 Content\mystinenmanulikenttÀver14.xnb 31 Content\mystinenmanulikenttÀver15.xnb 32 Content\mystinenmanulikenttÀver16.xnb 33 Content\mystinenmanulikenttÀver17.xnb 34 Content\leipÀp.xnb 35 Content\keittiö.xnb 36 Content\ylÀpuu.xnb 37 Content\alapuu.xnb -
2016/26/SallaK/Sandwich/Sandwich/Sandwich/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r7604 r7619 21 21 </Item> 22 22 <Item> 23 <Source>tahti.png</Source>24 <Name>tahti</Name>25 <Importer>TextureImporter</Importer>26 <Processor>TextureProcessor</Processor>27 <Options>None</Options>28 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\tahti.xnb</Output>29 <Time>2016-06-29T10:01:19.1196379+03:00</Time>30 </Item>31 <Item>32 23 <Source>kentta1.txt</Source> 33 24 <Name>kentta1</Name> … … 39 30 </Item> 40 31 <Item> 41 <Source>mystinenmanulikenttä.png</Source> 42 <Name>mystinenmanulikenttä</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttä.xnb</Output> 47 <Time>2016-06-29T10:56:10.6960011+03:00</Time> 48 </Item> 49 <Item> 50 <Source>mystinenmanulikenttä2.png</Source> 51 <Name>mystinenmanulikenttä2</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttä2.xnb</Output> 56 <Time>2016-06-29T13:14:35.3728021+03:00</Time> 57 </Item> 58 <Item> 59 <Source>mystinenmanulikenttä3.png</Source> 60 <Name>mystinenmanulikenttä3</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttä3.xnb</Output> 65 <Time>2016-06-29T13:45:15.6948021+03:00</Time> 66 </Item> 67 <Item> 68 <Source>mystinenmanulikenttä4.png</Source> 69 <Name>mystinenmanulikenttä4</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttä4.xnb</Output> 74 <Time>2016-06-29T13:58:49.6098021+03:00</Time> 75 </Item> 76 <Item> 77 <Source>mystinenmanulikenttä5.png</Source> 78 <Name>mystinenmanulikenttä5</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttä5.xnb</Output> 83 <Time>2016-06-30T14:25:54.5829364+03:00</Time> 32 <Source>ylätiili.JPG</Source> 33 <Name>ylätiili</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\ylätiili.xnb</Output> 38 <Time>2016-07-01T09:09:25.5142951+03:00</Time> 39 </Item> 40 <Item> 41 <Source>alatiili.JPG</Source> 42 <Name>alatiili</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alatiili.xnb</Output> 47 <Time>2016-07-01T09:09:31.8167355+03:00</Time> 48 </Item> 49 <Item> 50 <Source>ylätiilikuvanen.JPG</Source> 51 <Name>ylätiilikuvanen</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\ylätiilikuvanen.xnb</Output> 56 <Time>2016-07-01T09:19:36.3696505+03:00</Time> 57 </Item> 58 <Item> 59 <Source>alatiilikuvanen.JPG</Source> 60 <Name>alatiilikuvanen</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alatiilikuvanen.xnb</Output> 65 <Time>2016-07-01T09:19:53.953635+03:00</Time> 66 </Item> 67 <Item> 68 <Source>xjuustoe.png</Source> 69 <Name>xjuustoe</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustoe.xnb</Output> 74 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 75 </Item> 76 <Item> 77 <Source>xjuustoh.png</Source> 78 <Name>xjuustoh</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustoh.xnb</Output> 83 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 84 </Item> 85 <Item> 86 <Source>xjuustop.png</Source> 87 <Name>xjuustop</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustop.xnb</Output> 92 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 93 </Item> 94 <Item> 95 <Source>xkalae.png</Source> 96 <Name>xkalae</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalae.xnb</Output> 101 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 102 </Item> 103 <Item> 104 <Source>xkalah.png</Source> 105 <Name>xkalah</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalah.xnb</Output> 110 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 111 </Item> 112 <Item> 113 <Source>xkalap.png</Source> 114 <Name>xkalap</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalap.xnb</Output> 119 <Time>2016-07-01T09:53:05.538874+03:00</Time> 120 </Item> 121 <Item> 122 <Source>xleipäe.png</Source> 123 <Name>xleipäe</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipäe.xnb</Output> 128 <Time>2016-07-01T09:53:05.538874+03:00</Time> 129 </Item> 130 <Item> 131 <Source>xleipäh.png</Source> 132 <Name>xleipäh</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipäh.xnb</Output> 137 <Time>2016-07-01T09:53:05.538874+03:00</Time> 138 </Item> 139 <Item> 140 <Source>xleipäp.png</Source> 141 <Name>xleipäp</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipäp.xnb</Output> 146 <Time>2016-07-01T09:53:05.538874+03:00</Time> 147 </Item> 148 <Item> 149 <Source>xmanuli.png</Source> 150 <Name>xmanuli</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xmanuli.xnb</Output> 155 <Time>2016-07-01T09:53:05.538874+03:00</Time> 156 </Item> 157 <Item> 158 <Source>xsalaattie.png</Source> 159 <Name>xsalaattie</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattie.xnb</Output> 164 <Time>2016-07-01T09:53:05.538874+03:00</Time> 165 </Item> 166 <Item> 167 <Source>xsalaattih.png</Source> 168 <Name>xsalaattih</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattih.xnb</Output> 173 <Time>2016-07-01T09:53:05.538874+03:00</Time> 174 </Item> 175 <Item> 176 <Source>xsalaattip.png</Source> 177 <Name>xsalaattip</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattip.xnb</Output> 182 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 183 </Item> 184 <Item> 185 <Source>xtomaattie.png</Source> 186 <Name>xtomaattie</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattie.xnb</Output> 191 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 192 </Item> 193 <Item> 194 <Source>xtomaattih.png</Source> 195 <Name>xtomaattih</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattih.xnb</Output> 200 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 201 </Item> 202 <Item> 203 <Source>xtomaattip.png</Source> 204 <Name>xtomaattip</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattip.xnb</Output> 209 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 210 </Item> 211 <Item> 212 <Source>xvoie.png</Source> 213 <Name>xvoie</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoie.xnb</Output> 218 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 219 </Item> 220 <Item> 221 <Source>xvoih.png</Source> 222 <Name>xvoih</Name> 223 <Importer>TextureImporter</Importer> 224 <Processor>TextureProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoih.xnb</Output> 227 <Time>2016-07-01T09:53:05.5544741+03:00</Time> 228 </Item> 229 <Item> 230 <Source>xalatiilikuva.png</Source> 231 <Name>xalatiilikuva</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xalatiilikuva.xnb</Output> 236 <Time>2016-07-01T09:53:24.4929955+03:00</Time> 237 </Item> 238 <Item> 239 <Source>xvoip.png</Source> 240 <Name>xvoip</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoip.xnb</Output> 245 <Time>2016-07-01T09:53:42.9947141+03:00</Time> 246 </Item> 247 <Item> 248 <Source>xylätiilikuva.png</Source> 249 <Name>xylätiilikuva</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xylätiilikuva.xnb</Output> 254 <Time>2016-07-01T09:53:45.3971295+03:00</Time> 255 </Item> 256 <Item> 257 <Source>mystinenmanulikenttäver13.png</Source> 258 <Name>mystinenmanulikenttäver13</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttäver13.xnb</Output> 263 <Time>2016-07-01T10:40:23.7626964+03:00</Time> 264 </Item> 265 <Item> 266 <Source>mystinenmanulikenttäver14.png</Source> 267 <Name>mystinenmanulikenttäver14</Name> 268 <Importer>TextureImporter</Importer> 269 <Processor>TextureProcessor</Processor> 270 <Options>None</Options> 271 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttäver14.xnb</Output> 272 <Time>2016-07-01T10:46:49.4539904+03:00</Time> 273 </Item> 274 <Item> 275 <Source>mystinenmanulikenttäver15.png</Source> 276 <Name>mystinenmanulikenttäver15</Name> 277 <Importer>TextureImporter</Importer> 278 <Processor>TextureProcessor</Processor> 279 <Options>None</Options> 280 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttäver15.xnb</Output> 281 <Time>2016-07-01T10:49:10.8545086+03:00</Time> 282 </Item> 283 <Item> 284 <Source>mystinenmanulikenttäver16.png</Source> 285 <Name>mystinenmanulikenttäver16</Name> 286 <Importer>TextureImporter</Importer> 287 <Processor>TextureProcessor</Processor> 288 <Options>None</Options> 289 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttäver16.xnb</Output> 290 <Time>2016-07-01T10:50:15.0359042+03:00</Time> 291 </Item> 292 <Item> 293 <Source>mystinenmanulikenttäver17.png</Source> 294 <Name>mystinenmanulikenttäver17</Name> 295 <Importer>TextureImporter</Importer> 296 <Processor>TextureProcessor</Processor> 297 <Options>None</Options> 298 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttäver17.xnb</Output> 299 <Time>2016-07-01T10:52:34.1247095+03:00</Time> 300 </Item> 301 <Item> 302 <Source>leipäp.jpg</Source> 303 <Name>leipäp</Name> 304 <Importer>TextureImporter</Importer> 305 <Processor>TextureProcessor</Processor> 306 <Options>None</Options> 307 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\leipäp.xnb</Output> 308 <Time>2016-07-01T10:59:25.7210802+03:00</Time> 309 </Item> 310 <Item> 311 <Source>keittiö.jpg</Source> 312 <Name>keittiö</Name> 313 <Importer>TextureImporter</Importer> 314 <Processor>TextureProcessor</Processor> 315 <Options>None</Options> 316 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\keittiö.xnb</Output> 317 <Time>2016-07-01T11:01:29.6027883+03:00</Time> 318 </Item> 319 <Item> 320 <Source>yläpuu.jpg</Source> 321 <Name>yläpuu</Name> 322 <Importer>TextureImporter</Importer> 323 <Processor>TextureProcessor</Processor> 324 <Options>None</Options> 325 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\yläpuu.xnb</Output> 326 <Time>2016-07-01T11:24:48.9385652+03:00</Time> 327 </Item> 328 <Item> 329 <Source>alapuu.png</Source> 330 <Name>alapuu</Name> 331 <Importer>TextureImporter</Importer> 332 <Processor>TextureProcessor</Processor> 333 <Options>None</Options> 334 <Output>C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alapuu.xnb</Output> 335 <Time>2016-07-01T11:24:57.8906866+03:00</Time> 84 336 </Item> 85 337 <BuildSuccessful>true</BuildSuccessful> -
2016/26/SallaK/Sandwich/Sandwich/Sandwich/obj/x86/Debug/Sandwich.csproj.FileListAbsolute.txt
r7604 r7619 1 1 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\maali.xnb 2 2 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\norsu.xnb 3 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\tahti.xnb4 3 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\kentta1.xnb 5 4 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Sandwich.exe … … 11 10 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\obj\x86\Debug\Sandwich.exe 12 11 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\obj\x86\Debug\Sandwich.pdb 13 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀ.xnb 14 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀ2.xnb 15 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀ3.xnb 16 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀ4.xnb 17 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀ5.xnb 12 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\ylÀtiili.xnb 13 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alatiili.xnb 14 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\ylÀtiilikuvanen.xnb 15 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alatiilikuvanen.xnb 16 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustoe.xnb 17 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustoh.xnb 18 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xjuustop.xnb 19 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalae.xnb 20 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalah.xnb 21 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xkalap.xnb 22 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipÀe.xnb 23 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipÀh.xnb 24 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xleipÀp.xnb 25 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xmanuli.xnb 26 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattie.xnb 27 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattih.xnb 28 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xsalaattip.xnb 29 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattie.xnb 30 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattih.xnb 31 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xtomaattip.xnb 32 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoie.xnb 33 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoih.xnb 34 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xalatiilikuva.xnb 35 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xvoip.xnb 36 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\xylÀtiilikuva.xnb 37 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀver13.xnb 38 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀver14.xnb 39 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀver15.xnb 40 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀver16.xnb 41 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\mystinenmanulikenttÀver17.xnb 42 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\leipÀp.xnb 43 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\keittiö.xnb 44 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\ylÀpuu.xnb 45 C:\MyTemp\SallaK\Sandwich\Sandwich\Sandwich\bin\x86\Debug\Content\alapuu.xnb -
2016/26/SallaK/Sandwich/Sandwich/Sandwich/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r7604 r7619 1 1 Content\maali.xnb 2 2 Content\norsu.xnb 3 Content\tahti.xnb4 3 Content\kentta1.xnb 5 Content\mystinenmanulikenttÀ.xnb 6 Content\mystinenmanulikenttÀ2.xnb 7 Content\mystinenmanulikenttÀ3.xnb 8 Content\mystinenmanulikenttÀ4.xnb 9 Content\mystinenmanulikenttÀ5.xnb 4 Content\ylÀtiili.xnb 5 Content\alatiili.xnb 6 Content\ylÀtiilikuvanen.xnb 7 Content\alatiilikuvanen.xnb 8 Content\xjuustoe.xnb 9 Content\xjuustoh.xnb 10 Content\xjuustop.xnb 11 Content\xkalae.xnb 12 Content\xkalah.xnb 13 Content\xkalap.xnb 14 Content\xleipÀe.xnb 15 Content\xleipÀh.xnb 16 Content\xleipÀp.xnb 17 Content\xmanuli.xnb 18 Content\xsalaattie.xnb 19 Content\xsalaattih.xnb 20 Content\xsalaattip.xnb 21 Content\xtomaattie.xnb 22 Content\xtomaattih.xnb 23 Content\xtomaattip.xnb 24 Content\xvoie.xnb 25 Content\xvoih.xnb 26 Content\xalatiilikuva.xnb 27 Content\xvoip.xnb 28 Content\xylÀtiilikuva.xnb 29 Content\mystinenmanulikenttÀver13.xnb 30 Content\mystinenmanulikenttÀver14.xnb 31 Content\mystinenmanulikenttÀver15.xnb 32 Content\mystinenmanulikenttÀver16.xnb 33 Content\mystinenmanulikenttÀver17.xnb 34 Content\leipÀp.xnb 35 Content\keittiö.xnb 36 Content\ylÀpuu.xnb 37 Content\alapuu.xnb -
2016/26/SallaK/Sandwich/Sandwich/SandwichContent/SandwichContent.contentproj
r7604 r7619 56 56 <Processor>TextureProcessor</Processor> 57 57 </Compile> 58 <Compile Include="tahti.png">59 <Name>tahti</Name>60 <Importer>TextureImporter</Importer>61 <Processor>TextureProcessor</Processor>62 </Compile>63 58 <Compile Include="kentta1.txt"> 64 59 <Name>kentta1</Name> … … 68 63 </ItemGroup> 69 64 <ItemGroup> 70 <Compile Include="mystinenmanulikenttä.png"> 71 <Name>mystinenmanulikenttä</Name> 72 <Importer>TextureImporter</Importer> 73 <Processor>TextureProcessor</Processor> 74 </Compile> 75 </ItemGroup> 76 <ItemGroup> 77 <Compile Include="mystinenmanulikenttä2.png"> 78 <Name>mystinenmanulikenttä2</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 </Compile> 82 </ItemGroup> 83 <ItemGroup> 84 <Compile Include="mystinenmanulikenttä3.png"> 85 <Name>mystinenmanulikenttä3</Name> 86 <Importer>TextureImporter</Importer> 87 <Processor>TextureProcessor</Processor> 88 </Compile> 89 </ItemGroup> 90 <ItemGroup> 91 <Compile Include="mystinenmanulikenttä4.png"> 92 <Name>mystinenmanulikenttä4</Name> 93 <Importer>TextureImporter</Importer> 94 <Processor>TextureProcessor</Processor> 95 </Compile> 96 </ItemGroup> 97 <ItemGroup> 98 <Compile Include="mystinenmanulikenttä5.png"> 99 <Name>mystinenmanulikenttä5</Name> 65 <Compile Include="ylätiili.JPG"> 66 <Name>ylätiili</Name> 67 <Importer>TextureImporter</Importer> 68 <Processor>TextureProcessor</Processor> 69 </Compile> 70 </ItemGroup> 71 <ItemGroup> 72 <Compile Include="alatiili.JPG"> 73 <Name>alatiili</Name> 74 <Importer>TextureImporter</Importer> 75 <Processor>TextureProcessor</Processor> 76 </Compile> 77 </ItemGroup> 78 <ItemGroup> 79 <Compile Include="ylätiilikuvanen.JPG"> 80 <Name>ylätiilikuvanen</Name> 81 <Importer>TextureImporter</Importer> 82 <Processor>TextureProcessor</Processor> 83 </Compile> 84 </ItemGroup> 85 <ItemGroup> 86 <Compile Include="alatiilikuvanen.JPG"> 87 <Name>alatiilikuvanen</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 </Compile> 91 </ItemGroup> 92 <ItemGroup> 93 <Compile Include="xjuustoe.png"> 94 <Name>xjuustoe</Name> 95 <Importer>TextureImporter</Importer> 96 <Processor>TextureProcessor</Processor> 97 </Compile> 98 <Compile Include="xjuustoh.png"> 99 <Name>xjuustoh</Name> 100 <Importer>TextureImporter</Importer> 101 <Processor>TextureProcessor</Processor> 102 </Compile> 103 <Compile Include="xjuustop.png"> 104 <Name>xjuustop</Name> 105 <Importer>TextureImporter</Importer> 106 <Processor>TextureProcessor</Processor> 107 </Compile> 108 <Compile Include="xkalae.png"> 109 <Name>xkalae</Name> 110 <Importer>TextureImporter</Importer> 111 <Processor>TextureProcessor</Processor> 112 </Compile> 113 <Compile Include="xkalah.png"> 114 <Name>xkalah</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 </Compile> 118 <Compile Include="xkalap.png"> 119 <Name>xkalap</Name> 120 <Importer>TextureImporter</Importer> 121 <Processor>TextureProcessor</Processor> 122 </Compile> 123 <Compile Include="xleipäe.png"> 124 <Name>xleipäe</Name> 125 <Importer>TextureImporter</Importer> 126 <Processor>TextureProcessor</Processor> 127 </Compile> 128 <Compile Include="xleipäh.png"> 129 <Name>xleipäh</Name> 130 <Importer>TextureImporter</Importer> 131 <Processor>TextureProcessor</Processor> 132 </Compile> 133 <Compile Include="xleipäp.png"> 134 <Name>xleipäp</Name> 135 <Importer>TextureImporter</Importer> 136 <Processor>TextureProcessor</Processor> 137 </Compile> 138 <Compile Include="xmanuli.png"> 139 <Name>xmanuli</Name> 140 <Importer>TextureImporter</Importer> 141 <Processor>TextureProcessor</Processor> 142 </Compile> 143 <Compile Include="xsalaattie.png"> 144 <Name>xsalaattie</Name> 145 <Importer>TextureImporter</Importer> 146 <Processor>TextureProcessor</Processor> 147 </Compile> 148 <Compile Include="xsalaattih.png"> 149 <Name>xsalaattih</Name> 150 <Importer>TextureImporter</Importer> 151 <Processor>TextureProcessor</Processor> 152 </Compile> 153 <Compile Include="xsalaattip.png"> 154 <Name>xsalaattip</Name> 155 <Importer>TextureImporter</Importer> 156 <Processor>TextureProcessor</Processor> 157 </Compile> 158 <Compile Include="xtomaattie.png"> 159 <Name>xtomaattie</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 </Compile> 163 <Compile Include="xtomaattih.png"> 164 <Name>xtomaattih</Name> 165 <Importer>TextureImporter</Importer> 166 <Processor>TextureProcessor</Processor> 167 </Compile> 168 <Compile Include="xtomaattip.png"> 169 <Name>xtomaattip</Name> 170 <Importer>TextureImporter</Importer> 171 <Processor>TextureProcessor</Processor> 172 </Compile> 173 <Compile Include="xvoie.png"> 174 <Name>xvoie</Name> 175 <Importer>TextureImporter</Importer> 176 <Processor>TextureProcessor</Processor> 177 </Compile> 178 <Compile Include="xvoih.png"> 179 <Name>xvoih</Name> 180 <Importer>TextureImporter</Importer> 181 <Processor>TextureProcessor</Processor> 182 </Compile> 183 </ItemGroup> 184 <ItemGroup> 185 <Compile Include="xalatiilikuva.png"> 186 <Name>xalatiilikuva</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 </Compile> 190 </ItemGroup> 191 <ItemGroup> 192 <Compile Include="xvoip.png"> 193 <Name>xvoip</Name> 194 <Importer>TextureImporter</Importer> 195 <Processor>TextureProcessor</Processor> 196 </Compile> 197 </ItemGroup> 198 <ItemGroup> 199 <Compile Include="xylätiilikuva.png"> 200 <Name>xylätiilikuva</Name> 201 <Importer>TextureImporter</Importer> 202 <Processor>TextureProcessor</Processor> 203 </Compile> 204 </ItemGroup> 205 <ItemGroup> 206 <Compile Include="mystinenmanulikenttäver13.png"> 207 <Name>mystinenmanulikenttäver13</Name> 208 <Importer>TextureImporter</Importer> 209 <Processor>TextureProcessor</Processor> 210 </Compile> 211 </ItemGroup> 212 <ItemGroup> 213 <Compile Include="mystinenmanulikenttäver14.png"> 214 <Name>mystinenmanulikenttäver14</Name> 215 <Importer>TextureImporter</Importer> 216 <Processor>TextureProcessor</Processor> 217 </Compile> 218 </ItemGroup> 219 <ItemGroup> 220 <Compile Include="mystinenmanulikenttäver15.png"> 221 <Name>mystinenmanulikenttäver15</Name> 222 <Importer>TextureImporter</Importer> 223 <Processor>TextureProcessor</Processor> 224 </Compile> 225 </ItemGroup> 226 <ItemGroup> 227 <Compile Include="mystinenmanulikenttäver16.png"> 228 <Name>mystinenmanulikenttäver16</Name> 229 <Importer>TextureImporter</Importer> 230 <Processor>TextureProcessor</Processor> 231 </Compile> 232 </ItemGroup> 233 <ItemGroup> 234 <Compile Include="mystinenmanulikenttäver17.png"> 235 <Name>mystinenmanulikenttäver17</Name> 236 <Importer>TextureImporter</Importer> 237 <Processor>TextureProcessor</Processor> 238 </Compile> 239 </ItemGroup> 240 <ItemGroup> 241 <Compile Include="leipäp.jpg"> 242 <Name>leipäp</Name> 243 <Importer>TextureImporter</Importer> 244 <Processor>TextureProcessor</Processor> 245 </Compile> 246 </ItemGroup> 247 <ItemGroup> 248 <Compile Include="keittiö.jpg"> 249 <Name>keittiö</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 </Compile> 253 </ItemGroup> 254 <ItemGroup> 255 <Compile Include="yläpuu.jpg"> 256 <Name>yläpuu</Name> 257 <Importer>TextureImporter</Importer> 258 <Processor>TextureProcessor</Processor> 259 </Compile> 260 </ItemGroup> 261 <ItemGroup> 262 <Compile Include="alapuu.png"> 263 <Name>alapuu</Name> 100 264 <Importer>TextureImporter</Importer> 101 265 <Processor>TextureProcessor</Processor>
Note: See TracChangeset
for help on using the changeset viewer.