About types

Started by
2 comments, last by arcachofo 1 year, 4 months ago

I found a few things that are not working for me, probably just not supported, but just in case I'm missing something.

  • Static arrays (I know there is a dynamic array addon).
  • structs ( works as class).
  • bool conversion.
int arr[6];

struct str{
    int a;
    int b;
}

bool b = true;
int i = b;

Any suggestion?

None

Advertisement

Hi, arcachofo!

Yes, you are correct that none of these are currently supported in AngelScript.

I have entries on my todo list to implement them, but that is very far away from happening.

Regards,
Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

I was almost sure that it was just not supported, but who knows.

And none of these are big problems because there are alternatives.

None

This topic is closed to new replies.

Advertisement