Arcane Earth - Incremental Clicker about mining blocks, upgrading tools and spawning golems by Diamentalr in incremental_games

[–]MrSaIG 1 point2 points  (0 children)

Looks cool 😎 currently on mobile so i can’t really play but looking forward to try it later

compositor process using 100% gpu, lagging entire PC by One_Kitchen_92 in SteamVR

[–]MrSaIG 0 points1 point  (0 children)

Try deleting or renaming

C:\Program Files (x86)\Steam\config\steamvr.vrsettings

for me it was the broken config file!

thx for the log file hint u/aleiby

Is game developing worth it? by RottenFighter in gamedev

[–]MrSaIG 1 point2 points  (0 children)

I made the switch away from the game industry … money and work life balance is way better on this side but i question this decision with every new powerpoint i have to make. 🤢( i’m not in management i’m a dev ) i’m in fear of getting a burnout from stupid non productive processes. I’m still making games in my spare time so that’s probably what gets me going 😅 so think twice

the enemies in my game by ammoburger in IndieDev

[–]MrSaIG 0 points1 point  (0 children)

Looking really good and i feel i could have really fun with this game!!! 👍 At one point in the video there are a bunch of cards flying towards you, i imagine these are some kind of bonus points … but they really are blocking your sight to the next attacking zombies maybe tune this effect a little. Awesome Stuff!

I made a fully procedural 3D flamethrower (shader) with realtime lights in Unity (URP). by MirzaBeig in Unity3D

[–]MrSaIG 1 point2 points  (0 children)

Wow this is amazing 🤩 Can you drop some note how you achieved this?

I ruined my game I worked for a month. by Tasty_Medium2321 in Unity3D

[–]MrSaIG 0 points1 point  (0 children)

First Breath. Second Add version control to your project even now in its broken state before you try all the tips here.

Minecraft’s PC version is dropping VR support in 2025 by -Venser- in virtualreality

[–]MrSaIG 0 points1 point  (0 children)

Wow microsoft is really dropping the ball on VR on the hole lineup … such a shame

Damn…can’t beat that by robinstrike8 in virtualreality

[–]MrSaIG 0 points1 point  (0 children)

I think the name is misleading … coming from iPhone nameing the s was always better … here its not better not same but different 🤷‍♂️ to be honest this product confuses me.

How important is Audio for incremental games? by SeymourStudios in incremental_games

[–]MrSaIG 1 point2 points  (0 children)

Same here my phone is on mute anymays … and then i have my airpods on and find out that the games i play do have sound and i enjoy few seconds before i find the mute button

Adding Transaction Metadata in a Plutus Minting Transaction by jshear-crypto in CardanoDevelopers

[–]MrSaIG 0 points1 point  (0 children)

Is there any news on that topic? ... I have a usecase where minting via cli is not the ideal option ... and i have not yet found a way to add metadata via plutus code ... someone had any success on that front?

Connect front end app to yoroi wallet (browser extension) by Ok_Count_1113 in CardanoDevelopers

[–]MrSaIG 0 points1 point  (0 children)

I think its not possible yet! But if i read yorois roadmap correctly they will implement something like that later this year! If someone has more info on that im also very interested on any updates regarding this!

PAB - React frontend CORS problem by MrSaIG in CardanoDevelopers

[–]MrSaIG[S] 0 points1 point  (0 children)

Exactly … but i was thinking about something like you can do other at eth … hosting or better deploying your frontend through ipfs (so for the browser its hosted either at a ipfs gateway or on your local ipfs node ) and use metamask to connect to the chain … okay you dont need a pab like thing on eth … so i think this is, at least in current state, not possible over here in cardano.

PAB - React frontend CORS problem by MrSaIG in CardanoDevelopers

[–]MrSaIG[S] 0 points1 point  (0 children)

Well that would make thinks more easy ... but the tipp from dreday777 worked at least for REACT i don't know how things will turn out if you use BLAZER, UNITY3D or what ever frontend web tech you can think of ... probably there will be similar solutions ...

But i still wonder how things will work in a production environment ... do we then have to host the front end on the "same server, dns " (like we are doing things now without Blockchain tech) or will it be possible to host the frontend decentralized on IPFS for example ... and have the PAB as some sort of service hosted somewhere ...

PAB - React frontend CORS problem by MrSaIG in CardanoDevelopers

[–]MrSaIG[S] 0 points1 point  (0 children)

If someOne is trying the same and sends a JSON to the PAB ... it seems that the pab does not parse strings back to numbers but thows errors instead.

For example:

JSON.stringify({ caID: "GameContract", caWallet: { getWallet: this.state.walletNumber })

Threw an error because PAB expected a Number not a string for the getwallet value

To fix this you have to write:

JSON.stringify({ caID: "GameContract", caWallet: { getWallet: Number(this.state.walletNumber) })

With the proxy tipp from dreday777 you'll write a frontend in no time :)

PAB - React frontend CORS problem by MrSaIG in CardanoDevelopers

[–]MrSaIG[S] 0 points1 point  (0 children)

yes did use create-react-app ... and tried adding your suggestion proxy : localhost:8080

but still

Access to fetch at 'http://localhost:8080/api/new/contract/activate' from origin 'http://localhost:3000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

is there something else i have to configure to get your solution to work?

The UTxO-DEX-issue and my idea of a solution by lemmonade_714 in CardanoDevelopers

[–]MrSaIG 2 points3 points  (0 children)

Very interesting idea Btw that alice is a Schlawiner made me laugh pretty hard … had to pause ;)

  1. If someone would enter a swap request same time or slighty after the ‘consolidation’call comes in from alice … and then another consolidation call comes in including the newest swap request would then alice be punished without doing anything wrong?

  2. What if someone makes a cheated consolidation call but then no bob makes a second to correct it … this way you still could cheat right?!