Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Rules Clarification - Unity & Prefabs

A topic by Dragonfoxing created Mar 10, 2018 Views: 572 Replies: 6
Viewing posts 1 to 4
(2 edits)

I figure the answer is going to be a "no", since prefabs would make this challenge easier...but at the same time, prefabs with no game logic mostly just become shortcuts for packaging physics information (Collider/Collider2D and Rigidbody/Rigidbody2D) as well as art.  So it's worth asking the question, will prefabs be allowed or are they against the spirit/rules of the jam?

HostSubmitted

As long as your whole game code is inside a single structure, you can use pretty much whatever you'd like from the tools/engine that you're using - so yes, prefabs are allowed! Things that come out of the box can be freely used/referenced to - eg: in Unity, you can do operations with RigidBody or Sprite or whatever, but you can't write a "struct Player { Sprite; RigidBody; }" to help you organize things.

The whole thing is not really about making it hard, or even making it challenging necessarily. It's more about having a sandbox for people to react to the whole "single code unit" concept: do they reduce scope? Do they write unreadable code? Do they pick a specific challenge within those constraints? Do they simply go for a non-oo language? etc

Am I correct to assume that if i use C,  I can't write any structs besides one called Game?

From Twitter disscusion:

Q:I make games in C. Are 0 class games eligible? :P

A:No.

(Yes, but no structs allowed!)

HostSubmitted

What ikuti said :)
As long as you keep everything into a single "structural container", you can write in whichever language you prefer.

Submitted

Can I check whether free unity assets are ok? e.g. the Post-Processing Stack or a free asset pack like Farland Skies

HostSubmitted

yeah, any pre-made material is fine to use.