SebLague / Chess-Coding-Adventure

A work-in-progress chess bot written in C#
https://youtu.be/U4ogK0MIzqk
MIT License
1.42k stars 297 forks source link

Textures not loading in Android build! #8

Open DeveloperAugustus opened 3 years ago

DeveloperAugustus commented 3 years ago

Hello, Hope you are doing well, I took a build for android. But the problem is textures/chess pieces are not loading in game, Buttons are clickable.

chess

hadittt commented 2 years ago

hi I have the same problem have you found any solution ?

prajwalnagpure077 commented 2 years ago

I got solution , its just because the streamWriter is set to unAlocated location .

to fix this issuse just go to Zobrist.cs and change line number 106 and replace with this line

            return Path.Combine (Application.persistentDataPath, randomNumbersFileName);
hadittt commented 2 years ago

it worked thanks a lot

dhruvin771 commented 1 month ago

I got solution , its just because the streamWriter is set to unAlocated location .

to fix this issuse just go to Zobrist.cs and change line number 106 and replace with this line

          return Path.Combine (Application.persistentDataPath, randomNumbersFileName);

after trying this, I facing a lagging issue when the pawn changes position. do you have any solutions for that?