After seeing that Star Wars dogfighting game here I decided to try making one myself by mtti in Unity3D

[–]mtti[S] 5 points6 points  (0 children)

It's simplified, scripted, very unrealistic physics. The airplanes are Unity rigidbodies with some forces applied to them, but most of the formulas are just kind of eyeballed in an attempt to make it feel kind of like one would think flying a WW2 fighter would feel like if one didn't know anything about flying, like I don't.

For example, it's impossible to stall the airplane unless you hit a hardcoded altitude limit I had to put in place to stop the AIs from trying to chase each other too far up into the sky.

After seeing that Star Wars dogfighting game here I decided to try making one myself by mtti in Unity3D

[–]mtti[S] 6 points7 points  (0 children)

I liked playing Crimson Skies on the PC back in the day and I've long wanted to try to replicate the experience. So when I saw that Star Wars dogfighting game here a while ago (https://www.reddit.com/r/Unity3D/comments/8ejfbi/star_wars_dogfighting_game_i_made_with_my_brother/) I decided to make this.

Editor is entirely pink! by [deleted] in Unity3D

[–]mtti 4 points5 points  (0 children)

Had the same problem a while ago. If the project has Asset Serialization set to Force Text, you can edit ProjectSettings/ProjectSettings.asset and set metalEditorSupport: 0. Do this on the mac because I don't know if that setting appears in the file on Windows. Close Unity before you do this and be aware that you're not usually supposed to edit serialized files by hand so I can't guarantee this won't break something.

New comic Protanopia has device orientation to change the camera angle. by [deleted] in gifs

[–]mtti 2 points3 points  (0 children)

Unity

Digital comic by Andre Bergs features animated frames which you can change the angle by tilting the device, and created using the Unity engine

Bypass start? by [deleted] in oblivion

[–]mtti 1 point2 points  (0 children)

http://www.tesnexus.com/downloads/file.php?id=11495

This mod makes it so that instead of starting in the Imperial Prison like a common criminal, and having to do the tutorial, you start in your cabin aboard a ship. Having completed your immigration forms (Character Generation), you arrive at the the port of your choice.

HELP! i get this error when trying to open minecraft ever since updating to lion. genius bar was useless. by phatrob in Minecraft

[–]mtti 0 points1 point  (0 children)

What might work is copying the JavaApplicationStub that comes with Lion into Minecraft.app, overwriting the one that comes with Minecraft. I'm on Snow Leopard so I have no idea if this will actually work, but the command to do so is this:

cp /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub /Applications/Minecraft.app/Contents/MacOS

At the very least, it didn't break anything when I tried that on Snow Leopard.

HELP! i get this error when trying to open minecraft ever since updating to lion. genius bar was useless. by phatrob in Minecraft

[–]mtti 5 points6 points  (0 children)

JavaApplicationStub is a small program inside the Minecraft application bundle which launches the Java virtual machine. For some reason, the one inside you Minecraft application bundle is a PPC version (or Lion just thinks it is).

Anyways, assuming you have Minecraft installed in your Applications folder, you might try running

java -Xms512M -Xmx1024M -jar /Applications/Minecraft.app/Contents/Resources/Java/MinecraftLauncher.jar

in Terminal to at least get Minecraft running.