Frictional Games Forum (read-only)

Full Version: Can't find functions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
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.
(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)