userLayladcancel
reposboxcancel

3,518 Commits over 1,338 Days - 0.11cph!

3 Years Ago
Stop material from setting sampler state when rendering UI so it can just be set once before render
3 Years Ago
Add callback after updating ui render state so sampler state can be set
3 Years Ago
Add sampler state bindings
3 Years Ago
Allow subrect texture updates
3 Years Ago
Initial support for updating texture data
3 Years Ago
Strip some bullshit from image format enum
3 Years Ago
Ensure texture config has at least 1 mip level
3 Years Ago
Clean up texture api from feedback Texture.Make2D() should be Texture.Create( width, height, format optional default to rgba8 ) The .AsRGB8() stuff should be .WithFormat( formatenum ) The .Mips should be WithMips() .Create has a lot of info on it that should probably be on the builder, like .WithData(), .WithName()
3 Years Ago
Add AsRGBA8 to 2d texture config
3 Years Ago
Allow managed texture to be passed through to binds that use resource handles
3 Years Ago
Test textures work and can be rendered (they do)
3 Years Ago
Allow texture data to be passed through create func of texture config
3 Years Ago
Make config stubs for the other texture types (3d, array, cube)
3 Years Ago
Add render target flag when creating render target textures
3 Years Ago
Add multisample modes to TextureRenderTargetConfig
3 Years Ago
Rename TextureCreationConfig to TextureCustomConfig
3 Years Ago
Add the other texture usage modes
3 Years Ago
Initial support for creating textures (of any type) in managed
3 Years Ago
Fix joint binds not marshalling bools correctly Fix debug only error relating to previous damage changes
3 Years Ago
Just use endpos of the trace for thirdperson collision
3 Years Ago
Add collision to thirdperson camera
3 Years Ago
Add Trace.Radius for sphere traces
3 Years Ago
Add look at camera
3 Years Ago
Allow joints to attach to and from ent with body index or name or directly to a physics body
3 Years Ago
Add BodyCount and GetBody (from index or name) to PhysicsGroup
3 Years Ago
Bind GetJointHandle from physics aggregate
3 Years Ago
Fix typo in CommonConstraintConfig.IsValid
3 Years Ago
Better param names in config to avoid typos
3 Years Ago
Add summary for revolute config
3 Years Ago
Fix WithLimitEnabled
3 Years Ago
Add WithLinearSpring, WithAngularSpring to weld joint config
3 Years Ago
Add comments for revolute motor funcs
3 Years Ago
Add motor api to revolute joint config (WithLimitEnabled, WithPositionModeMotor, WithVelocityModeMotor)
3 Years Ago
Add motor params to revolute joint config
3 Years Ago
Bind PhysicsJointMotorMode enum
3 Years Ago
Put joints in their own folder, keep it all tidy
3 Years Ago
Add StartsNotActive to common joint config
3 Years Ago
Native helper func to fill out PhysicsJointDesc_t
3 Years Ago
Add friction and breakable impulse limits to common joint config
3 Years Ago
Cleanup duplicate code as much as possible in joint api
3 Years Ago
Disable EnableSceneObjectOverride for now Don't create joint if both bodies are null in the config Make sure collision property isn't null before trying to get physics body from it
3 Years Ago
Remove a log left over by mistake
3 Years Ago
Add ShadowsOnlyEnabled via scene object override
3 Years Ago
Typo :S
3 Years Ago
Redesign physics joint api with builder design
3 Years Ago
Comment out ui render test so there isn't an ugly square in the corner
3 Years Ago
Bind CRenderAttributes
3 Years Ago
Set UI render material and texture from managed
3 Years Ago
DrawQuad and DrawIndexed in managed
3 Years Ago
Add ArgUShort to InteropGen. Bind 16 bit index buffer.