Add support for calculated defines to parser (#2463)

* Add support for calculated defines to parser

* Regenerate parser output
This commit is contained in:
lazaray 2022-05-06 20:23:07 +02:00 committed by GitHub
parent bbc8d39185
commit aa318674e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 156 additions and 19 deletions

View file

@ -26,13 +26,13 @@ return {
},
{
name = "DEG2RAD",
type = "UNKNOWN",
type = "FLOAT_MATH",
value = "(PI/180.0f)",
description = ""
},
{
name = "RAD2DEG",
type = "UNKNOWN",
type = "FLOAT_MATH",
value = "(180.0f/PI)",
description = ""
},