WorldToScreen 함수보니까
class Function Local.WorldToScreen(VectorWorld : D3DXVECTOR3; Out Screen : D3DXVECTOR3) : BOOL;
Var
ProjectionRead, ViewRead : Array [0..15] of Single;
Projection, View, World : TD3DXMatrix;
Viewport_ : TD3DViewport9;
Begin
Try
Result := False;
ReadProcessMemory(mem.GetHandle, Pointer(Local_View - $80), @ViewRead, SizeOf(ViewRead), PNativeUInt(nil)^);
View := _D3DMATRIX(ViewRead);
ReadProcessMemory(mem.GetHandle, Pointer(Local_View - $40), @ProjectionRead, SizeOf(ProjectionRead), PNativeUInt(nil)^);
Projection := _D3DMATRIX(ProjectionRead);
ReadProcessMemory(mem.GetHandle, Pointer(Local_View), @Viewport_, SizeOf(Viewport_), PNativeUInt(nil)^);
D3DXMatrixIdentity(World);
D3DXVec3Project(Screen, VectorWorld, Viewport_, Projection, View, World);
if Screen.Z < 1 then
Result := True;
Except
End;
End;
월드내에 캐릭터 좌표를 화면 좌표로 변환할려면 이 함수를 거쳐야한다고 하는데
변환할때 필요한 Viewport_, Projection, View, World 이값을 얻는방법 Local_View < 이 값을 찾는방법좀 알려주세요 화면상으로 내 카메라 X,Y 조절 가능한 앵글 값인지 무슨값인지 영문을 모르겠는데 이런질문 해도되는진 모르겠는데 혹시 활정대상이면 글 내릴테니 알려주세요
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
7178 | 하드벤+5 | 05-01 | 456 | |
7177 | 서든 ㅎ구함+1 | 05-01 | 291 | |
7176 | 05-01 | 540 | ||
7175 | 05-01 | 376 | ||
7174 | 서든 ㅎ 삽니다+1 | 05-01 | 307 | |
7173 | 04-30 | 440 | ||
7172 | 04-30 | 731 | ||
7171 | 하드벤 서든+1 | 04-30 | 346 | |
7170 | 04-30 | 785 | ||
7169 | 04-30 | 846 | ||
7168 | 04-30 | 1592 | ||
7167 | 04-30 | 437 | ||
7166 | 체리 새코드ㅍ+1 | 04-30 | 505 | |
7165 | 04-30 | 362 | ||
7164 | 하드밴인가요?+4 | 04-30 | 510 | |
7163 | 04-30 | 421 | ||
7162 | 04-30 | 391 | ||
7161 | 04-29 | 339 | ||
7160 | 04-29 | 735 | ||
7159 | 04-29 | 620 |
댓글3
[view_angle]
48 8B 0D BB 7C 7C 00 48 8B 05 6C 9A 70 00 48 8B 89 E8
cshell + 1718530
F5086E
11좀 걸어주세연