Posts

Showing posts from June, 2019

Optimization "Occlusion Culling"

Image
Occlusion Culling toegepast    Door Occlusion Culling aan te zetten zal alles wat achter de camera van de Player Controller bevind uitgezet worden. Hiermee zullen onnodige assets die toch niet gezien worden op dat punt tijdelijk uitgezet worden om bijvoorbeeld framerate en RAM te besparen. Hierdoor zal de game smoother lopen en zal er geen lag ontstaan.

Optimization "Textures"

Image
Textures vervanging Veel textures moesten vervangen worden omdat ze magenta waren geworden na het exporteren. Dit was gelukt door apart elke shader van de material over te zetten van "standard" naar HDRP/Lit, en hier de correcte texture op te gooien zodat het vervangen wordt.    De lastigste assets om te vervangen waren de bomen van de "Unity Stylized Nature pack", omdat ze bestaande leaf shaders bevatten. De assets die ik zelf gemaakt had of van Sketchfab gedownload had waren het minder werk om te vervangen.   

Optimization "Skybox"

Image
Skybox update Mijn eerste skybox werd verwijderd nadat ik het project over had gezet naar HDRP omdat het niet compatible was. Om dit te vervangen vond ik een HDRI-cube van de Unity asset store. Hier zaten een aantal versies in die ik had uitgeprobeerd en uiteindelijk met de "evening sky" gegaan:    "Morning sky" variatie:    Before HDRP > HDRP > HDRI cube      

Shader "Cracked Ice"

Image
Shadergraph: ice cracks In een aparte scene gewerkt om de shader te maken van een YouTube tutorial door Binary Impact. Tutorial:  https://www.youtube.com/watch?v=rlGNbq5p5CQ    Voor in de environment wou ik een bevroren meer maken naast de brug buiten, om het koude temperatuur te laten zien. Shadergraph nodes layout Scene implement   

Research

Image
CPU [Central Processing Unit] A central processor, or CPU, is arguably the most important component of any computing device. It handles basic instructions and allocates the more complicated tasks to other specific chips to get them to do what they do best. It’s the core of your PC, smartphone, or tablet. and it’s what makes the whole device run as it should.  Intel Core i9 CPU chip The CPU itself is a core component of what makes a computer a computer, but it isn’t the computer itself — it’s just the brains of the operation. It’s a small computer chip that sits atop the main circuit board (motherboard) of a computer, whether that’s a desktop PC, laptop, or tablet. It’s distinctly separate from the memory, which is where information is stored, and the graphics card or graphics chip, which handles all rendering of video and 3D graphics to your monitor or screen. At its core, a CPU takes instructions from a program or application and performs a calculation. This proce...