Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - JohnnyB

#1
Is this true or a bug? I am scaling a 1.0 sized cube to something larger but somehow the ray only seems to hit the "small" part without scaling.
#2
What kind of format is that anyway? Has this been created specifically for GlBasic?

And is it possible to convert it into something else for other uses?
#3
Right now, I have noticed, at a few thousand 3D objects there will be some sort of overflow(?), I guess.

Yes, I know that this sounds a little bit like overkill, but is this a deliberate restriction or just some sort of oversight/bug?
#4
Hi all,

has anyone yet done (I know there is a solution for e.g. clipboard) an example of dropping a file into your program window, so you could e.g. automatically load the file?

#5
is this possible?

dim x[44][]

does not work, e.g.

#7
In AGK you can do it like that:

https://www.appgamekit.com/documentation/Reference/3D/GetObjectRayCastX.htm

In GLBasic I can apparently only raycast and get the distance, but not the exact position.

Is there another way?

I think you could calculate it somehow if you have the distance (vector plus vector x distance)?
#8
So if is huge, it has not to be re-created every time?!
#9
Is there a way to scale models to a size of let's say 1x1. X_SCALING apparently only scales from the original size, it seems?
#10
Is there a good-looking 3D game or demo available?
#11
Do you think GLBasic can handle large RTS game real-time logic and AI like "Supreme Commander"?

Yes, I know the obvious answer is that it depends on skill of the programmer.  :D

In other words, how does GLBasic compare to C# Monogame, Unity, Libgdx, whatever... Not talking about C/C++, Rust and the like. It's obviously much faster than AGK (that is only interpreted and not very efficently it seems).

#12
I am not sure at the moment how this "INLINE" stuff really works.
#13
What is the best solution?

i cannot use foreach with non-types, can I?!
#14

Right now I have to do something like this:

PROTOTYPE prType : a#

FUNCTION test: a#

LOCAL testPr As prType

testPr = test

FUNCTION prPass: testPr As prType

prPass(testPr)

Is it possible to implement direct passing of the function:

prPass(test)

-------





#15
I saw that once in the IDE. Can I do it by pressing a button or something?
#16
GLBasic - en / Vulkan?
2019-Mar-09
Hi! Cool tool you got there. I like the syntax more than AGK.

Is there any ambition to turn GLBasic into some sort of V(ulkan)Basic in the near future or are such large changes out of the question?

Greetings,
Johnny