Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#29 Rejected Game Engine Incorperatrion Gary keen@…
Description

There should be a game engine feature that allows users to make games a lot easyer. The system could use OpenGL or DirectX and could look something like this:

#include <gameengine.au3>

;Creates the game window. The first item is the game name. The second is the size. Full = Fullscreen, Half = Half of the screen. Gamecreate ("Game Name" , Full)

;Creates a charator. The first item is the name of it/him/her. The second is the type of charactor. Main = Main Charactor (All cameras parented to him), Second = Any other charactor. Charactorcreate ("Main Charactors Name", Main)

;Creates a camera. The value is the name of the camera. You can use Cameraset () to set it up. Cameracreate ("Main")

;Sets the camera properties. 1 = First Person, 3 = Third Person. Cameraset (1)

;Creates a enemy. The enemy has 3 systems pre-programed AI systems. 1 = Crazy, 2 = Normal, 3 = Coward. Enemycreate ("Baddy one", 3)

;Creates the level. The first value is the width, the second is the lengh. Each value is a cube that is 100x100 (give or take). Levelcreate (3, 3)

;Sets the properties for the level. You program it cube by cube. 1 = solid bock, 2 = empty, 3 = wall left, 4 = wall right, 5 = Wall top, 6 = wall bottom. Levelset (1, 3, 2, 2, 1, 5, 2, 1, 2)

You could add many other features. Just an idea.

#30 No Bug GUICtrlSetBkColor() bug with GUICtrlCreateLabel() and GUICreate with BitOR() WaitingUserInfo atomman
Description

With every combo of BitOR() i've tried, GUICtrlSetBkColor() fails. If BitOR() is removed, GUICtrlSetBkColor() works fine. Run the code as is, color won't change. Comment out L2 and uncomment L3, it works fine. Behavior is same with GUICtrlCreateGraphic() as well, maybe others.

#include <GUIConstants.au3>
$Win_SBS = GUICreate("SpeedBlog - Satellite", 556, 204, -1, -1, BitOR($WS_CLIPCHILDREN,$WS_POPUP))
;$Win_SBS = GUICreate("SpeedBlog - Satellite", 556, 204, -1, -1)
GUISetFont(8, 400, 0, "Arial")
$Label1 = GUICtrlCreateLabel("", 193, 113, 8, 15)
GUICtrlSetBkColor(-1, 0x00FF00)
$Button1 = GUICtrlCreateButton("Button1", 292, 80, 75, 25, 0)
GUISetState(@SW_SHOW)
While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			GUICtrlSetBkColor($Label1, 0xFF0000)
	EndSwitch
WEnd
#31 Completed AutoIt user agent added to internet functions Jon Jon
Description

AutoIt currently uses a blank user agent for internet functions. Many website block this and cause InetGet to fail. Need to add a non-blank user agent.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.