Home › Stray_Train › Comments
Stray_Train
About
- Username
- Stray_Train
- Joined
- Visits
- 1,737
- Last Active
- Roles
- Member
- Thanked
- 124
Comments
-
I returned from the MGSA graveyard just to tell you how fun this was to play
-
Are you thinking of Gamelogic?
-
@francoisvn still keen yeah :)
-
@francoisvn I'm still keen to talk but I don't mind moving over to next month if we need to clear up time, I suspect mine might run over time.
-
@blacksheepZA here you go!
-
I'm keen to continue from last month. Would like to talk about tweening through code.
-
Cool! I'll prepare something to fill a 20 minute slot :)
-
Would anyone be interested in a technical talk? Something along the lines of explaining a programming pattern/concept, architectural concept or just working through a problem together.
-
I was thinking of coming through around the same time
-
Game jam? I haven't heard that name in years... Forum username: @Stray_Train Team name: none Team size: 1 Venue: CPT
-
Thanks for your feedback guys :) Time to get to typing! I'm going to start with a tools tutorial that involves some math (mostly equations of motion) and take it from there
-
@vince it's because there are restrictions in the c++ side of Unity that prevent it from serializing generics. Your guess is correct :) If a parent class is serializable, that doesn't make a child class automatically serializable (I stand to be corr…
-
I vote for somewhere with pizza
-
and by winners I mean everyone who took part in the jam. Making games is a prize in itself :)
-
It was awesome to see all the entries for this jam. Congrats to the winners :D
-
That was freaking awesome! I lol'd irl :') Crit: * It would be nice if you could skip dialog (this might already be a thing but I couldn't figure it out) * The aspect ratio of the menu UI doesn't scale to fit the screen it's on, so on my laptop the…
-
Also, in your code you'll want to change public int SceneDestination = 1; to public string SceneDestination; and SceneManager.LoadScene("LEVEL2"); to SceneManager.LoadScene(SceneDestination); This way, you won't have to modify the code again and …
-
OnTriggerEnter() is for 3D physics, you should be using OnTriggerEnter2D() because you have a BoxCollider2D component attached to your object. Protip: you can also add an argument into that function that will give you information about the thing th…
-
You should check the console window for errors (control + shift + c), it's the quickest way to get to the root of your unity woes :p The most likely cause of not being able to change scenes is that you didn't add the scene you want to change to to …
-
I had a bit too much fun with the console window :P I've updated the first post with instructions.
-
I gave it a try (on windows), I really loved it! Seriously, I didn't know how much red is in skin tones until today. Recommended, would learn again.
-
I added the tick boxes but it felt really dissonant with what I imagined the game experience to be like. What I'm thinking of doing is instead of adding a list of buttons I'll add a little "console" window that you can type into (with auto complete …
-
@Kree8 when you say losing animations, do you mean that the .anim file is being deleted?
-
Nope! I can't art to save my life. The ninja comes with this awesome library.
-
Whatsapp simulator? I vote for adding the blue "read message" ticks for maximum simulated awkwardness.
-
This is looking really cool! At first I thought the red dots were the players and they were being shot out of a base. I think you should make the bullets a more neutral colour so that they don't attract the eye as much and make the players themselve…
-
Thank you :D Did you think loading the patches from actual files was too cumbersome? Would it be better if they were just included in game and you could toggle them on and off? My idea is that you can eventually retroactively apply patches (so you…
-
If you have any technical questions you should ask here! We can probably help you get them sorted quicker than it would take to watch an entire youtube video/series :p (seriously, where did all the awesome written tutorials go?)
-
I like how the heat elements slowly changed colour, it was a pleasant surprise for me for some reason. I think that the pan itself should also slowly change colour depending on the temperature it's at because it obscures the heating element behind i…
-
I'm in! I think we'll likely end up using wits again because of the number of people jamming
-
Wits is always available
-
I'm keen to jam this weekend if anyone wants to join me?
-
I don't think that competitions and judging would work well with this because they add an extra layer of admin. I think that the idea should be to get into the habit of making games first and foremost, before trying to make it official and stuff. To…
-
This is quickly becoming my favorite thread :) As I was leaving high school in 2010, I decided I needed to move away from "baby languages" like GML (I know right?). So, I started learning C#. Over the course of the summer between high school and va…
-
Sorry for the late reply! That's a good idea. Would you expect the letters to be highlighted in the grid or only after they've been put into a word? Definitely in the board so that I'd know that I want to use them in a word. There is actually a diff…
-
I love it! My thoughts: It would be cool if letters that enemies are weak against are highlighted, also I think there needs to be a stronger visual indication of when you get first strike. At first I thought it wasn't possible and then it just sor…
-
If you're not looking to code if all yourself I can recommend this library
-
@Gazza_N while I played the game I kept wishing that I could drift like a car to turn around faster. Sort of like a directional "rocket boost" that would happen if I double tapped A or D. In my head I would turn in warped arc like this
-
If you (or anyone else reading this) would like, I could write up a tutorial on how to deploy to android from unity and what all the android specific terms mean
-
apk (android application package) is the android version of windows/mac install files. Think of it as a container that holds all of your game files in one convenient package. So, you distribute apk files like you would distribute exe files on window…
-
Also, assuming you want twin stick shooter controls (and you're using the latest version of Unity), Unity now has those in the standard assets! Assets --> Import Package --> Cross Platform Input. Look for a prefab called DualTouchControls in t…
-
So, I would use the Input class instead of the new gui stuff because you can get a lot more useful information out of it void Update() { // Make sure there are at least two touches on the screen if (Input.touchCount > 1) { // Positi…
-
Re: First year lab, there's definitely a projector and it uses an hdmi cable :)
-
Thanks for playing guys :D @FanieG those are some terribad choices. And by terribad I mean AMAZING. @vintar I'll try sneak that in this weekend, always wanted to build a replay system of some sort. @BlackShipsFilltheSky you are indeed correct, they…
-
+1 for dota again
-
Herman's 50 Unity Best Practices article is also permanently linked on the Unity subreddit
-
We couldn't finish in time before our next exam :( Going to pick it up again this week though!
-
(It's actually pretty interesting. I'll try give it a shot this weekend)
-
1. None that come to mind, although it shouldn't be too hard to make your own? What kind of problems are you guys having? 2. I've successfully managed to get networking working in Sassy Shooters using photon. If you guys want I can walk you through …
-
We'd ideally like to make this into a local multiplayer game, does anyone have any pointers on how I could create an ad hoc network over bluetooth or wifi? Through the web? Networking is an exciting mystery to me :) EDIT: For clarity, we're using Un…