Frictional Games Forum (read-only)
Can't find functions - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: SOMA (https://www.frictionalgames.com/forum/forum-55.html)
+--- Forum: User created content (https://www.frictionalgames.com/forum/forum-79.html)
+---- Forum: Development (https://www.frictionalgames.com/forum/forum-82.html)
+---- Thread: Can't find functions (/thread-31428.html)



Can't find functions - Fatalist - 10-24-2015

Hi,
In Amnesia we had two simply functions. First - SetMessage for text message on the screen, and second - StartInsanityEvent for display images on the player camera.

Is there any analogues of these functions in HPL3 engine?


RE: Can't find functions - WALP - 10-24-2015

havent tried it yet but Effect_Screen_Start()
"Creates an image that shows up on the screen, it must be faded manually. Remember that these must work both on 4:3 and 16:9 aspect ratio"

The function does not seem to use images directly, but through materials, so you will probably need to set one up for your image.
The function also seems to have both a simplified and extended version of itself.


RE: Can't find functions - Fatalist - 10-25-2015

(10-24-2015, 02:25 PM)WALP Wrote: havent tried it yet but Effect_Screen_Start()
"Creates an image that shows up on the screen, it must be faded manually. Remember that these must work both on 4:3 and 16:9 aspect ratio"

The function does not seem to use images directly, but through materials, so you will probably need to set one up for your image.
The function also seems to have both a simplified and extended version of itself.


Thanks! Its working)