Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Looking for experienced Unity dev for an online video consultation. (Paid.)

A topic by Tantrum Tech created May 09, 2022 Views: 292 Replies: 3
Viewing posts 1 to 4

Hi, I'm offering a modest sum (20USD) for approximately an hour of advice as I fly through the project I'm working on during a video call.


I need a lot of help with optimisation, and I'll need someone with a strong understanding of BIRP lighting, particularly when it comes to lightmapping. The game looks how I want it to look, but I'm down to 3-8fps and I'm already using deferred rendering on the main (and only) camera. I've tried to bake but it takes all day and looks nothing like the realtime lighting.

The project is pre-announcement so confidentiality is required. In the interest of respectful disclosure, I must mention that it is to be a NSFW game, with adult and potentially offensive themes (mostly dark-humour) which some respondents may wish to avoid.

I'm a very new developer, and have a lot of questions to ask. Please be aware that you will see a LOT of rookie mistakes. I don't want to mislead anyone into thinking this will be a breeze. I'm confused and overwhelmed by this tool, but it's my best shot at improving my circumstances.


I will also be happy to include your preferred name in credits as a technical consultant if you like, but depending on whether the final product is up to your usual standards you may not wish it.

Payment via Paypal/Osko or negotiated crypto. (I don't use any wrapped or high fee coins as a rule.)

Time slot negotiable, but prefer to decide on applicant within the next seven days.


Thank you for reading.

(2 edits) (+2)

Have you used the Unity Profiler to make sure the rendering is your issue?

I'm a Unity Programmer so sadly that falls outside of my scope however I do have some tips for coding that may help.

1. Don't use GetComponent / GetObjectOfType in the update loop (unless you have to). These are resource intensive functions in Unity. Ideally you would cache the data in a variable and have it be assigned during the Start/Awake functions.

2. If you are instantiating a lot of prefabs in the update loop, you may wish to consider using Object Pooling instead. This recycles unused GO's instead of Destroying them. Brackeys has a video explaining the benefits of pooling on youtube if you wish to know more. Additionally I do have a Unity Package available on my itch page that you can download (It's free) that will handle the logistics of pooling for you, I do believe it has an example scene included if you don't know how to use it. (if not you can always reach out to me through this comment.)

Other than that all I can really recommend, without having a look at your code, is that you try to move logic that doesn't need to be in the update loop out. For example:

There is a button that handles the activation of a ui panel by setting a bool in your code. The ui panel, or its manager, checks this bool every frame (in the update) to see whether it should turn on or not.

Obviously for this example you would just have the button directly turn this panel on when you click it instead, however what I'm trying to suggest is that the ui panel does not need to know every frame whether it should turn on or not. You simply turn it on the moment the button is pressed. What this means is that instead of every frame some logic runs to check whether the ui should be on, this same logic runs only on one frame to turn it on.

I hope your optimization adventure goes well and that you can take back your frames. Happy hunting!

Bump.

(1 edit)

Hello,

I can consult you and having 5+ years of exp.

Games Samples

Please connect with me: trish@cisinlabs.com

Skype - live:.cid.baff7c7dd9471b54

Thanks

Trish