Search found 41 matches

by karim1a2004
Tue Sep 06, 2005 9:57 am
Forum: Irrlicht.NET
Topic: Is it possible to use Irrlicht and Windows Forms?
Replies: 12
Views: 3825

hello
with which program one can do that
you with a source code
thank
by karim1a2004
Sat Aug 13, 2005 6:09 am
Forum: Irrlicht.NET
Topic: a litle snake game in vb.net
Replies: 0
Views: 2379

a litle snake game in vb.net

Imports Irrlicht Imports Irrlicht.Core Imports Irrlicht.Scene Imports Irrlicht.Video Imports Irrlicht.GUI Imports Irrlicht.IO Module Module1 Public device As New IrrlichtDevice(DriverType.OPENGL, New Dimension2D(640, 480), 16, False, True, False) ' Public MeshPlayer As IAnimatedMesh = device.SceneMa...
by karim1a2004
Mon Aug 08, 2005 6:54 pm
Forum: Irrlicht.NET
Topic: a single enemy class
Replies: 4
Views: 2375

I did not understand your question
:?:
by karim1a2004
Sun Aug 07, 2005 6:05 am
Forum: Irrlicht.NET
Topic: a single enemy class
Replies: 4
Views: 2375

Imports Irrlicht Imports Irrlicht.Core Imports Irrlicht.Scene Imports Irrlicht.Video Imports Irrlicht.GUI Imports Irrlicht.IO Imports System.Math Public Class Enemy Public Sub Move(ByVal Enemy As ISceneNode, ByVal Player As ISceneNode, ByVal Speed As Integer) Dim Xp, Zp As Single Xp = Enemy.Position...
by karim1a2004
Sun Aug 07, 2005 6:04 am
Forum: Irrlicht.NET
Topic: a single enemy class
Replies: 4
Views: 2375

a single enemy class

t'is class is enemy movig,rotation
enemy rotate & move up to player good for IA

:lol:
by karim1a2004
Wed Aug 03, 2005 6:07 am
Forum: Irrlicht.NET
Topic: iso camera class in vb.net
Replies: 2
Views: 2088

iso camera class in vb.net

Imports Irrlicht Imports Irrlicht.Core Imports Irrlicht.Scene Imports Irrlicht.Video Imports Irrlicht.GUI Imports Irrlicht.IO Imports System.Math Public Class IsoCam Public m_pTargetNode As ISceneNode Public m_cam As ICameraSceneNode Public lastTargetPos As Vector3D Public m_height As Single 'distan...
by karim1a2004
Tue Aug 02, 2005 11:24 am
Forum: Irrlicht.NET
Topic: a litle game in vb.net
Replies: 0
Views: 1767

a litle game in vb.net

Imports Irrlicht Imports Irrlicht.Core Imports Irrlicht.GUI Imports Irrlicht.IO Imports Irrlicht.Scene Imports Irrlicht.Video Module Module1 Public device As New IrrlichtDevice(DriverType.OPENGL, New Dimension2D(640, 480), 16, False, True, False) Public cam As Scene.ICameraSceneNode = device.SceneMa...
by karim1a2004
Sun Jul 31, 2005 7:57 am
Forum: Irrlicht.NET
Topic: draw 2 text on yhe screen
Replies: 0
Views: 1392

draw 2 text on yhe screen

Dim Text As IGUIFont = device.GUIEnvironment.BuiltInFont
Text.Draw("VDBIRRLICHT", New Position2D(10, 50), New Color(255, 255, 255, 255))

the text can be to modify without problems


:lol:
by karim1a2004
Fri Jul 29, 2005 7:51 am
Forum: Irrlicht.NET
Topic: help for the collison
Replies: 5
Views: 2485

hello i do this function colidebox in vb.net that work perfectli :lol: Imports Irrlicht.Core Imports Irrlicht.Scene Public Class Collision Public Function TestCollision(ByVal NodeA As ISceneNode, ByVal Tpoint As Vector3D) As Boolean Dim Cx, Cy, Cz As Boolean Dim OBJbox As Box3D = NodeA.BoundingBox D...
by karim1a2004
Thu Jul 28, 2005 8:02 am
Forum: Irrlicht.NET
Topic: help for the collison
Replies: 5
Views: 2485

If (device.SceneManager.SceneCollisionManager.GetCollisionPoint(line, Selector, intersection, tri)) Then
End

End If
this function dont'work
help me juste for that
thanks
by karim1a2004
Wed Jul 27, 2005 12:13 pm
Forum: Irrlicht.NET
Topic: help for the collison
Replies: 5
Views: 2485

help for the collison

I desire of the assistance for the collision enters the ball and the racket thank you Imports Irrlicht Imports Irrlicht.Core Imports Irrlicht.GUI Imports Irrlicht.IO Imports Irrlicht.Scene Imports Irrlicht.Video Module Module1 Public device As New IrrlichtDevice(DriverType.OPENGL, New Dimension2D(64...
by karim1a2004
Fri Jul 22, 2005 11:17 am
Forum: Irrlicht.NET
Topic: fmodnet for the sound
Replies: 0
Views: 1150

fmodnet for the sound

goto view on my page
http://users.skynet.be/fa033256/Scrdownload.htm
it's a .dll open source for the sound in vb.net
:wink:
by karim1a2004
Wed Jul 20, 2005 12:57 pm
Forum: Irrlicht.NET
Topic: Diablo/Diablo 2 Style Isometric View
Replies: 7
Views: 3769

thank irme show this code Public Sub MoveCamera(ByVal vec As Vector3D) vec.Y += 150 vec.X += 150 vec.Z += 150 cam.Position = vec End Sub End Module Public Class MyEventReceiver Implements IEventReceiver Public Function OnEvent(ByVal e As [Event]) As Boolean Implements IEventReceiver.OnEvent If e.Typ...
by karim1a2004
Wed Jul 20, 2005 12:46 pm
Forum: Irrlicht.NET
Topic: Button click event not work
Replies: 12
Views: 4634

again a other event type Public Class MyEventReceiver Implements IEventReceiver Public Function OnEvent(ByVal e As [Event]) As Boolean Implements IEventReceiver.OnEvent If e.Type = EventType.KeyInput Then If e.Key = 32 Then End Return True End If If e.Type = EventType.GUIEvent Then If e.GUIEventType...
by karim1a2004
Wed Jul 20, 2005 10:25 am
Forum: Irrlicht.NET
Topic: Button click event not work
Replies: 12
Views: 4634

Public Class MyEventReceiver Implements IEventReceiver Public Function OnEvent(ByVal e As [Event]) As Boolean Implements IEventReceiver.OnEvent If e.Type = EventType.KeyInput Then If e.Key = 27 Then End Return True End If Return False End Function Public Function OnGuiEvent(ByVal i As [Event]) As Bo...