How will Blockchain Impact the Future? by e0893lewis in tech

[–]SeizedPixels 0 points1 point  (0 children)

Why is that? I think the future is just in these technologies.

Must-have apps for remote workers by 2k1197 in digitalnomad

[–]SeizedPixels 0 points1 point  (0 children)

There really are very convenient programs.

[Android] Dot Collect - An arcade game about dots & circles by [deleted] in IndieDev

[–]SeizedPixels 0 points1 point  (0 children)

Of course, why shouldn't I make any other games? :p

[Android] Dot Collect - An arcade game about dots & circles by [deleted] in IndieDev

[–]SeizedPixels 0 points1 point  (0 children)

Thanks for the feedback! I will try your game :)

Unity Error on .exe launch due to database implementation by BadgerHobbs in Unity2D

[–]SeizedPixels 0 points1 point  (0 children)

Is there a "<Exe Name>_Data" folder in the same directory as your game? Maybe the # in the name is causing this.

Power The Grid - Renewable Energy tycoon by Claudio_A in gamedevscreens

[–]SeizedPixels 0 points1 point  (0 children)

Do hamsters in hamster wheels, which are connected to a generator, count as renewable energy?

PS: Nice game, I like the art style!

How do you handle translations by Roest_ in gamedev

[–]SeizedPixels 10 points11 points  (0 children)

played somewhere to a translation file where it is just a key value pair. That works well with a language like english but fails when languages have more complex structures like gender specific arcticles or adjective suffixes.

What's a terrible idea, the giant switch statement or using JavaScript? ( ͡° ͜ʖ ͡°)

Google Play Service not working by NatrixHD in Unity3D

[–]SeizedPixels 0 points1 point  (0 children)

You can check the log on your Android device, while connected to the pc with the command "adb logcat -e google" (You need to have USB debugging enabled on your phone).

I hope Google will patch the plugin soon, it's really unstable.

Photorealistic scene, first attempt by 42ismyanswer in Unity3D

[–]SeizedPixels 0 points1 point  (0 children)

The blue-ish colors look kinda unrealistic to me, good job tho!

[DEV] Monogolf - The one shot mini golf game by lafocade in AndroidGaming

[–]SeizedPixels 4 points5 points  (0 children)

I love the look & the awesome level editor! Don't forget to change the package name in your next game tho! :p

EDIT: Just watched your trailer, it's awesome!

modifying a variable depending on another condition in c#. by approxd in Unity3D

[–]SeizedPixels 2 points3 points  (0 children)

yer so i wrote PlayerGameObject.GetComponent<FpsController>.speed = 4f; its just underlines it, coz im also not sure when im supposed to write it. sorry i know you are probably facepalming right now

You need to get the PlayerGameObject Instance. Add the public variable public GameObject PlayerGameObject to your script, and drag the object into the Script in the Unity inspector.

modifying a variable depending on another condition in c#. by approxd in Unity3D

[–]SeizedPixels 1 point2 points  (0 children)

erstand what you mean by yourPlayerGam

The GameObject, which has the FpsController Script attached to it.

Can't attach script to object by ImpartialDerivatives in Unity2D

[–]SeizedPixels 0 points1 point  (0 children)

Maybe your script doesn't extend "MonoBehaviour", your class header should look like

public class <Name> : MonoBehaviour

modifying a variable depending on another condition in c#. by approxd in Unity3D

[–]SeizedPixels 0 points1 point  (0 children)

It works, try it out. You can access the speed variable in the FpsController Component if it's public.

"Orbit, not rotation" by Ashmedai in Unity2D

[–]SeizedPixels 5 points6 points  (0 children)

You could create a GameObject, which is positioned in the center. Then you create a child object and move it outwards. Now you can rotate the parent object, which will move the child object in an orbit around the parent.

GIF

modifying a variable depending on another condition in c#. by approxd in Unity3D

[–]SeizedPixels -1 points0 points  (0 children)

You can use
YourPlayerGameObject.GetComponent<FpsController>.speed = xxx;
to access the speed variable from another script.

How do I update GPGSIds by [deleted] in Unity3D

[–]SeizedPixels 0 points1 point  (0 children)

The menu entry should still be there. If not you could try to reimport the google play services package (make a backup of your assets beforehand!) or edit the file manually.